/*---------------------------------------------------------------------------------------*/
/* FONTS */
/*---------------------------------------------------------------------------------------*/
@font-face {
    font-family: 'Candara';
    src: url('fonts/candara.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/*---------------------------------------------------------------------------------------*/
/* DESKTOP */
/*---------------------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {

    /* DESKTOP - GENERAL */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Verdana';
        font-size: 1.5vw;
        margin: 0;
        background-color: #F2F2F2;
    }

    img {
        height: auto;
    }

    #main_1 #nav_1 a,
    #main_2 #nav_2 a,
    #main_3 #nav_3 a,
    #main_4 #nav_4 a,
    #main_5 #nav_5 a,
    #main_6 #nav_6 a {
        font-weight: bold;
    }

    /* DESKTOP - CONSTRUCTION BANNER */
    .construction_banner {
        background-color: #f8d7da;
        color: #721c24;
        padding: 10px;
        text-align: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    /* DESKTOP - HEADER */
    .header_desktop_nav {
        z-index: 9998;
        background-color: #B4E5A2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.1vw;
        position: fixed;
        border-bottom: 0.2vw solid rgba(30, 156, 19, 0.507);
        width: 100%;
    }

    .header_desktop_nav_left {
        display: flex;
        align-items: center;
    }

    .header_desktop_nav_left_paragraph {
        margin: 0;
        font-size: 1.3vw;
        /* text-align: center; */
    }

    .header_desktop_nav_left_img_logo {
        width: 3.5vw;
        margin-right: 0.97vw;
        margin-left: 3vw;
    }

    .header_desktop_nav_middle {
        display: flex;
    }

    .header_desktop_nav_middle a {
        text-decoration: none;
        margin-right: 2vw;
        padding: 1.5vw;
        color: black;
        font-size: 1.3vw;
    }

    .header_desktop_nav_middle a:last-child {
        margin-right: 0;
    }

    .header_desktop_nav_middle li {
        display: inline;
        list-style-type: none;
    }

    .header_desktop_nav_middle a:hover {
        color: rgb(98, 96, 96);
    }

    .header_desktop_nav_right {
        margin-right: 3vw;
    }

    .header_desktop_nav_right_img {
        width: 1.2vw;
        border-radius: 50%;
        border: 0.078vw solid black;
    }

    .header_desktop_nav_img_title {
        margin-top: 6.2vw;
        width: 100vw;
    }

    /* DESKTOP - HEADER hide mobile */
    .header_mobile {
        display: none;
    }

    /* DESKTOP - CONTENT */
    .content {
        text-align: center;
        padding: 2vw 27vw;
    }

    /* DESKTOP - CONTENT - image popup*/
    .popup_modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .popup_modal img {
        margin: auto;
        margin-top: 2vw;
        margin-bottom: 2vw;
        display: block;
        max-width: 50%;
    }

    .popup_modal .close {
        position: absolute;
        top: 1.5vw;
        right: 3vw;
        color: #fff;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
    }

    .popup_image {
        cursor: pointer;
    }

    /* DESKTOP - CONTENT - divider line */
    .content .divider_line {
        border-bottom: 1px solid rgba(0, 0, 0, 0.39);
        width: 46vw;
        margin: 0 auto;
    }

    /* DESKTOP - CONTENT - image */
    .content img {
        width: 30vw;
        /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
    }

    /* DESKTOP - CONTENT - title */
    .content h2 {
        font-size: 1.5vw;
        font-weight: bold;
        text-align: left;
    }

    .content h3 {
        font-size: 1.075vw;
        font-weight: bold;
        text-align: left;
    }

    .content h4 {
        font-size: 0.72vw;
        font-weight: normal;
        text-align: left;
        font-style: italic;
        color: #4a4949;
        margin-top: 0.35vw;
    }

    /* DESKTOP - CONTENT - paragraph */
    .content p {
        font-size: 1.075vw;
        text-align: left;
    }

    .content_box {
        display: flex;
        justify-content: center;
    }

    .content_paragraph_center {
        text-align: center;
    }

    .content .quote {
        padding-top: 0.2vw;
        padding-left: 4vw;
        padding-right: 4vw;
        padding-bottom: 0.8vw;
        text-align: center;
        font-family: 'Candara', sans-serif;
        font-size: 1.6vw;
    }

    .content .quote_subtitle {
        text-align: center;
        padding-bottom: 0.4vw;
    }

    /* DESKTOP - CONTENT - bullet point */
    .content .ul_content {
        font-size: 1vw;
        text-align: left;
        padding-left: 2vw
    }

    .content ul li::marker {
        text-decoration: underline;
    }

    /* DESKTOP - CONTENT - table */
    .content .table {
        width: 23vw;
        border-collapse: collapse;
        margin-left: auto;
        margin-right: auto;
    }

    .content .table img {
        width: 23vw;
    }

    .content .table th {
        padding: 0.5vw;
        border: 1px solid black;
        text-align: left;
        font-size: 1.075vw;
        vertical-align: top;
        font-weight: bold;
        background-color: #D9D9D9;
    }

    .content .table td {
        padding: 0.5vw;
        border: 1px solid black;
        text-align: left;
        font-size: 1.075vw;
        vertical-align: top;
    }

    .content .bold {
        font-weight: bold;
    }

    /* DESKTOP - CONTENT - several images next to each other */
    .content .image_container {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .content .image_box {
        flex: 1;
        padding: 10px;
        text-align: center;
        position: relative;
    }

    .content .image_box img {
        max-width: 100%;
    }

    .content #image_box_img_pdf {
        width: 3.5vw;
    }

    .content #image_box_img_paypal_qr_code {
        width: 9vw;
    }

    .content .image_box p {
        font-weight: bold;
        text-align: center;
        padding-bottom: 0.5vw;
    }

    /* .content .image_box .content_paragraph_not_bold p { NOT WORKING
        font-weight: normal;
        text-align: left;
    } */

    /* DESKTOP - CONTENT - divider */
    .content_divider {
        height: 1.2vw;
        width: auto;
        display: block;
    }

    /* DESKTOP - CONTENT - slideshow */
    .my_slides {
        display: none;
    }

    .img_slide_show {
        width: 100%;
        vertical-align: middle;
    }

    .slideshow_container {
        max-width: 30vw;
        position: relative;
        margin: auto;
    }

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev {
        left: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .dots {
        text-align: center;
    }

    .dot {
        cursor: pointer;
        height: 0.7vw;
        width: 0.7vw;
        margin-left: 0.2vw;
        margin-right: 0.2vw;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active,
    .dot:hover {
        background-color: #717171;
    }

    .fade {
        animation-name: fade;
        animation-duration: 0.7s;
    }

    @keyframes fade {
        from {
            opacity: 0.5
        }

        to {
            opacity: 1
        }
    }

    /* DESKTOP - CONTENT - video */
    video {
        width: 30vw;
    }

    .iframe {
        width: 30vw;
        height: auto;
        border: none;
        aspect-ratio: 16 / 9;
    }

    .video_container {
        position: relative;
    }

    .play_button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
    }

    .play_button img {
        width: 4vw;
        height: auto;
        border-radius: 50%;
    }

    /* DESKTOP - CONTENT - contact form */
    .form_contact {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
        border: 0.1vw solid rgb(79, 78, 78);
        border-radius: 0.5vw;
        width: 36vw;
        padding: 1vw;
        margin: 0 auto;
    }

    .label_contact {
        text-align: left;
        font-size: 0.85vw;
        display: block;
        margin-bottom: 0.02vw;
    }

    .input_contact[type="text"],
    .input_contact[type="tel"],
    .input_contact[type="email"] {
        border: 0.05vw solid rgb(79, 78, 78);
        border-radius: 0.25vw;
        width: 100%;
        padding: 0.4vw;
        margin-bottom: 0.5vw;
        resize: vertical;
        font-size: 0.85vw;
    }

    .textarea_contact {
        border: 0.05vw solid rgb(79, 78, 78);
        border-radius: 0.25vw;
        margin-top: 0.3vw;
        width: 100%;
        height: 200px;
        padding: 0.4vw;
        margin-bottom: 0.7vw;
        resize: vertical;
        font-family: 'Verdana';
        font-size: 0.85vw;
    }

    .input_contact[type="submit"] {
        font-weight: bold;
        font-size: 0.85vw;
        border: 0.15vw solid rgba(30, 156, 19, 0.507);
        border-radius: 0.8vw;
        background-color: #B4E5A2;
        color: black;
        padding: 0.6vw 1.2vw;
        cursor: pointer;
    }

    .input_contact[type="submit"]:hover {
        background-color: rgba(30, 156, 19, 0.507);
    }

    /* DESKTOP - CONTENT - contact form */
    .content .link {
        font-size: 1.075vw;
        text-align: left;
    }

    /* DESKTOP - FOOTER */
    .footer {
        border-top: 0.2vw solid rgba(30, 156, 19, 0.507);
        background-color: #B4E5A2;
        /* background-color: #1a4908; */
        color: black;
        text-align: center;
        padding: 1.1vw 0;
        width: 100%;
    }

    .footer_content {
        font-size: 1vw;
        height: auto;
    }

    .footer_content a {
        text-decoration: none;
        color: black;
    }

    /* DESKTOP - cookie popup */
    .cookie_popup {
        background-color: #F2F2F2;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
        border: 0.1vw solid rgb(79, 78, 78);
        border-radius: 0.5vw;
        width: 21vw;
        padding: 1vw;
        position: fixed;
        bottom: 1vw;
        right: 1vw;
        display: none;
        z-index: 1000;
    }

    .cookie_popup_content {
        text-align: left;
        font-size: 0.75vw;
        display: block;
        margin-bottom: 0.02vw;
    }

    .cookie_popup_content p {
        margin-bottom: 1vw;
    }

    .cookie_popup_title {
        font-size: 0.9vw;
        font-weight: bold;
        margin-bottom: 1vw;
    }

    .cookie_popup_buttons {
        display: flex;
        justify-content: center;
        gap: 1vw;
        margin-top: 1vw;
    }

    .cookie_popup_buttons button {
        font-weight: bold;
        font-size: 0.75vw;
        border: 0.15vw solid rgba(30, 156, 19, 0.507);
        border-radius: 0.8vw;
        background-color: #B4E5A2;
        color: black;
        padding: 0.6vw 1.2vw;
        cursor: pointer;
        transition: background-color 0.3s;
        /* Smooth color transition */
    }

    .cookie_popup_buttons button:hover {
        background-color: rgba(30, 156, 19, 0.507);
    }

    .cookie_popup_buttons #decline_cookies {
        border: 0.15vw solid #f17e76ad;
        background-color: #f17f767b;
    }

    .cookie_popup_buttons #decline_cookies:hover {
        background-color: #f17e76ad;
    }

    .cookie_popup_content a {
        color: #1b7cd1;
        text-decoration: none;
    }

    .cookie_popup_content a:hover {
        text-decoration: underline;
    }

}

/*---------------------------------------------------------------------------------------*/
/* MOBILE */
/*---------------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {

    /* MOBILE - GENERAL */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Verdana';
        font-size: 5vw;
        margin: 0;
        background-color: #F2F2F2;
    }

    img {
        height: auto;
    }

    #main_1 #nav_1 a,
    #main_2 #nav_2 a,
    #main_3 #nav_3 a,
    #main_4 #nav_4 a,
    #main_5 #nav_5 a,
    #main_6 #nav_6 a {
        font-weight: bold;
    }

    /* MOBILE - CONSTRUCTION BANNER */
    .construction_banner {
        background-color: #f8d7da;
        color: #721c24;
        padding: 10px;
        text-align: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        font-size: 4vw;
    }

    /* MOBILE - HEADER */
    .header_mobile_nav {
        z-index: 9998;
        background-color: #B4E5A2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2.5vw;
        position: fixed;
        border-bottom: 0.45vw solid rgba(30, 156, 19, 0.507);
        width: 100%;
    }

    .header_mobile_nav_right_menu {
        cursor: pointer;
        display: block;
        margin-right: 5vw;
        align-items: center;
    }

    .header_mobile_nav_right_menu_line {
        width: 7vw;
        height: 0.9vw;
        background-color: black;
        margin: 5px 0;
    }

    .header_mobile_nav_right_links {
        z-index: 9998;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #B4E5A2;
        padding-top: 80px;
        text-align: center;
        /* overflow: hidden; //did not help to avoid scrolling
        overscroll-behavior: contain; //did not help to avoid scrolling */
    }

    .header_mobile_nav_right_links li {
        margin-bottom: 20px;
    }

    .header_mobile_nav_right_links a {
        display: block;
        text-decoration: none;
        color: black;
        font-size: 7.35vw;
        font-style: bold;
        padding-top: 3vw;
    }

    .header_mobile_nav_right_links_close {
        cursor: pointer;
        position: absolute;
        top: 8.2vw;
        right: 6.8vw;
        cursor: pointer;
    }

    .header_mobile_nav_right_links_close_img {
        width: 8.5vw;
    }

    .header_mobile_nav_middle {
        display: flex;
        padding-right: 4.6vw;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .header_mobile_nav_middle p {
        font-size: 4.6vw;
    }

    .header_mobile_nav_middle_img_logo {
        width: 13vw;
        padding-bottom: 0.6vw;
    }

    .header_mobile_nav_left {
        margin-left: 3.5vw;
    }

    .header_mobile_nav_left_img {
        width: 6vw;
        margin: 0.5vw;
        /* padding: 0.9vw; */
        border-radius: 50%;
        border: 0.35vw solid black;
    }

    .header_mobile_nav_img_title {
        margin-top: 25vw;
        width: 100vw;
    }

    .header_mobile_nav_divider_line {
        border-bottom: 1px solid rgba(0, 0, 0, 0.39);
        width: 86vw;
        margin: 0 auto;
    }

    .header_mobile_quote {
        padding-top: 7.5vw;
        padding-left: 12vw;
        padding-right: 12vw;
        padding-bottom: 3vw;
        text-align: center;
        font-family: 'Candara', sans-serif;
        font-size: 6vw;
    }

    .header_mobile_quote_subtitle {
        text-align: center;
        padding-bottom: 8vw;
    }

    /* MOBILE - HEADER hide desktop */
    .header_desktop {
        display: none;
    }

    /* MOBILE - CONTENT */
    .content {
        text-align: center;
        padding: 8vw 7vw;
    }

    /* MOBILE - CONTENT - image popup*/
    .popup_modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .popup_modal img {
        margin: auto;
        margin-top: 12vw;
        margin-bottom: 6vw;
        display: block;
        max-width: 86%;
    }

    .popup_modal .close {
        position: absolute;
        top: 1.5vw;
        right: 7vw;
        color: #fff;
        font-size: 35px;
        font-weight: bold;
    }

    /* MOBILE - CONTENT - divider line */
    .content .divider_line {
        border-bottom: 1px solid rgba(0, 0, 0, 0.39);
        width: 86vw;
        margin: 0 auto;
    }

    /* MOBILE - CONTENT - image */
    .content img {
        width: 86vw;
    }

    /* MOBILE - CONTENT - title */
    .content h2 {
        font-size: 6vw;
        font-weight: bold;
        text-align: left;
    }

    .content h3 {
        font-size: 5vw;
        font-weight: bold;
        text-align: left;
    }

    .content h4 {
        font-size: 3.35vw;
        font-weight: normal;
        text-align: left;
        font-style: italic;
        color: #4a4949;
        margin-top: 2vw;
    }

    /* MOBILE - CONTENT - paragraph */
    .content p {
        font-size: 5vw;
        text-align: left;
    }

    .content_box {
        display: flex;
        justify-content: center;
    }

    .content_paragraph_center {
        text-align: center;
    }

    .content .quote {
        padding-left: 5vw;
        padding-right: 5vw;
        padding-bottom: 3vw;
        text-align: center;
        font-family: 'Candara', sans-serif;
        font-size: 6vw;
    }

    .content .quote_subtitle {
        text-align: center;
        padding-bottom: 2vw;
    }

    /* MOBILE - CONTENT - bullet point */
    .content .ul_content {
        font-size: 1vw;
        text-align: left;
        padding-left: 2vw;
    }

    .content ul li::marker {
        text-decoration: underline;
    }

    /* MOBILE - CONTENT - table */
    .content .table {
        width: 86vw;
        border-collapse: collapse;
        margin-left: auto;
        margin-right: auto;
    }

    .content .table img {
        width: 86vw;
    }

    .content .table th {
        padding: 1.2vw;
        border: 1px solid black;
        text-align: left;
        font-size: 5vw;
        vertical-align: top;
        font-weight: bold;
        background-color: #D9D9D9;
    }

    .content .table td {
        padding: 1.2vw;
        border: 1px solid black;
        text-align: left;
        font-size: 5vw;
        vertical-align: top;
    }

    .content .bold {
        font-weight: bold;
    }

    /* MOBILE - CONTENT - several images next to each other */
    .content .image_container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .content .image_box {
        flex: 0 0 100%;
        padding: 10px;
        text-align: center;
        position: relative;
    }

    .content .image_box img {
        max-width: 100%;
    }

    .content #image_box_img_pdf {
        width: 13vw;
    }

    .content #image_box_img_paypal_qr_code {
        width: 45vw;
    }

    .content .image_box p {
        font-weight: bold;
        text-align: center;
        padding-bottom: 2vw;
    }

    /* .content .image_box p .content_paragraph_not_bold { NOT WORKING
        font-weight: normal;
        text-align: left;
    } */

    /* MOBILE - CONTENT - divider */
    .content_divider {
        height: 5.5vw;
        width: auto;
        display: block;
    }

    /* MOBILE - CONTENT - slideshow */
    .my_slides {
        display: none;
    }

    .img_slide_show {
        width: 100%;
        vertical-align: middle;
    }

    .slideshow_container {
        max-width: 86vw;
        position: relative;
        margin: auto;
        /* overflow: hidden; */
    }

    .prev,
    .next {
        position: absolute;
        top: 27vw;
        width: auto;
        padding: 5vw;
        margin-top: -5vw;
        color: white;
        font-weight: bold;
        font-size: 10vw;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev {
        left: 0;
        border-radius: 3px 0 0 3px;
    }

    .dots {
        text-align: center;
        padding-top: 3vw;
    }

    .dot {
        height: 3.5vw;
        width: 3.5vw;
        margin-left: 0.85vw;
        margin-right: 0.85vw;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active {
        background-color: #717171;
    }

    .fade {
        animation-name: fade;
        animation-duration: 0.7s;
    }

    @keyframes fade {
        from {
            opacity: 0.5
        }

        to {
            opacity: 1
        }
    }

    /* MOBILE - CONTENT - video */
    video {
        width: 86vw;
        border: 1px solid rgb(79, 78, 78);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .iframe {
        width: 86vw;
        height: auto;
        border: none;
        aspect-ratio: 16 / 9;
    }

    .play_button {
        display: none;
    }

    /* MOBILE - CONTENT - contact form */
    .form_contact {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
        border: 0.22vw solid rgb(79, 78, 78);
        border-radius: 2vw;
        width: 86vw;
        padding: 1vw;
        margin: 0 auto;
    }

    .label_contact {
        text-align: left;
        font-size: 5vw;
        display: block;
        padding-left: 2.5vw;
        margin-top: 2vw;
        margin-bottom: 1vw;
    }

    .input_contact[type="text"],
    .input_contact[type="tel"],
    .input_contact[type="email"] {
        border: 0.22vw solid rgb(79, 78, 78);
        border-radius: 2vw;
        width: 95%;
        padding: 2vw;
        margin-bottom: 1vw;
        resize: vertical;
        font-size: 5vw;
    }

    .textarea_contact {
        border: 0.22vw solid rgb(79, 78, 78);
        border-radius: 2vw;
        margin-top: 0.3vw;
        width: 95%;
        height: 240px;
        padding: 2vw;
        margin-bottom: 0.5vw;
        resize: vertical;
        font-family: 'Verdana';
        font-size: 5vw;
    }

    .input_contact[type="submit"] {
        font-weight: bold;
        font-size: 5vw;
        border: 0.45vw solid rgba(30, 156, 19, 0.507);
        border-radius: 2vw;
        background-color: #B4E5A2;
        color: black;
        padding: 2vw 4vw;
        margin: 3vw;
    }

    /* MOBILE - CONTENT - contact form */
    .content .link {
        font-size: 5vw;
        text-align: left;
    }

    /* MOBILE - FOOTER */
    .footer {
        border-top: 0.45vw solid rgba(30, 156, 19, 0.507);
        background-color: #B4E5A2;
        /* background-color: #1a4908; */
        color: black;
        text-align: center;
        padding: 5vw 0;
        width: 100%;
    }

    .footer_content {
        font-size: 4vw;
        height: auto;
    }

    .footer_content a {
        text-decoration: none;
        color: black;
    }

    /* MOBILE - cookie popup */
    .cookie_popup {
        background-color: #F2F2F2;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
        border: 0.1vw solid rgb(79, 78, 78);
        border-radius: 3vw;
        width: 86vw;
        padding: 3vw;
        position: fixed;
        bottom: 10vw;
        left: 7vw;
        display: none;
        z-index: 1000;
    }

    .cookie_popup_content {
        text-align: left;
        font-size: 3.5vw;
        display: block;
        margin-bottom: 3vw;
    }

    .cookie_popup_content p {
        margin-bottom: 3vw;
    }

    .cookie_popup_title {
        font-size: 4.2vw;
        font-weight: bold;
        margin-bottom: 3vw;
    }

    .cookie_popup_buttons {
        display: flex;
        justify-content: center;
        gap: 3vw;
        margin-top: 3vw;
    }

    .cookie_popup_buttons button {
        font-weight: bold;
        font-size: 3.5vw;
        border: 0.45vw solid rgba(30, 156, 19, 0.507);
        border-radius: 2vw;
        background-color: #B4E5A2;
        color: black;
        padding: 2.5vw 5vw;
        cursor: pointer;
        transition: background-color 0.3s;
        /* Smooth color transition */
    }

    .cookie_popup_buttons #decline_cookies {
        border: 0.45vw solid #f17e76ad;
        background-color: #f17f767b;
    }

    .cookie_popup_content a {
        color: #1b7cd1;
        text-decoration: none;
    }

}