/* _content/Waspify/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-xdaxmqqnpa] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-xdaxmqqnpa] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root[b-xdaxmqqnpa] {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root[b-xdaxmqqnpa] {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #34b7a7; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root[b-xdaxmqqnpa] {
    --nav-color: #444444; /* The default color of the main navmenu links */
    --nav-hover-color: #34b7a7; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #34b7a7; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background[b-xdaxmqqnpa] {
    --background-color: #e9e8e6;
    --surface-color: #ffffff;
}

.dark-background[b-xdaxmqqnpa] {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root[b-xdaxmqqnpa] {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body[b-xdaxmqqnpa] {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a[b-xdaxmqqnpa] {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover[b-xdaxmqqnpa] {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1[b-xdaxmqqnpa],
h2[b-xdaxmqqnpa],
h3[b-xdaxmqqnpa],
h4[b-xdaxmqqnpa],
h5[b-xdaxmqqnpa],
h6[b-xdaxmqqnpa] {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message[b-xdaxmqqnpa] {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message[b-xdaxmqqnpa] {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading[b-xdaxmqqnpa] {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .php-email-form .loading[b-xdaxmqqnpa]:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--accent-color);
        border-top-color: var(--surface-color);
        animation: php-email-form-loading-b-xdaxmqqnpa 1s linear infinite;
    }

@keyframes php-email-form-loading-b-xdaxmqqnpa {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header[b-xdaxmqqnpa] {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

    .header .logo[b-xdaxmqqnpa] {
        line-height: 1;
    }

        .header .logo img[b-xdaxmqqnpa] {
            max-height: 36px;
            margin-right: 8px;
        }

        .header .logo h1[b-xdaxmqqnpa] {
            font-size: 32px;
            margin: 0;
            font-weight: 300;
            text-transform: uppercase;
            color: var(--heading-color);
        }

    .header .header-social-links[b-xdaxmqqnpa] {
        padding-right: 15px;
    }

        .header .header-social-links a[b-xdaxmqqnpa] {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            padding-left: 6px;
            display: inline-block;
            transition: 0.3s;
            font-size: 16px;
        }

            .header .header-social-links a:hover[b-xdaxmqqnpa] {
                color: var(--accent-color);
            }

            .header .header-social-links a i[b-xdaxmqqnpa] {
                line-height: 0px;
            }

@media (max-width: 1200px) {
    .header .logo[b-xdaxmqqnpa] {
        order: 1;
    }

    .header .header-social-links[b-xdaxmqqnpa] {
        order: 2;
    }

    .header .navmenu[b-xdaxmqqnpa] {
        order: 3;
    }
}
/* _content/Waspify/Components/Layout/NavMenu.razor.rz.scp.css */
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu[b-vtpzij9f9h] {
        padding: 0;
    }

        .navmenu ul[b-vtpzij9f9h] {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li[b-vtpzij9f9h] {
            position: relative;
        }

        .navmenu > ul > li[b-vtpzij9f9h] {
            white-space: nowrap;
            padding: 15px 14px;
        }

            .navmenu > ul > li:last-child[b-vtpzij9f9h] {
                padding-right: 0;
            }

        .navmenu a[b-vtpzij9f9h],
        .navmenu a:focus[b-vtpzij9f9h] {
            color: var(--nav-color);
            font-size: 15px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a i[b-vtpzij9f9h],
            .navmenu a:focus i[b-vtpzij9f9h] {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu > ul > li > a[b-vtpzij9f9h]:before{
            content: "";
            position: absolute;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--nav-hover-color);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover[b-vtpzij9f9h]:before,
        .navmenu li:hover > a[b-vtpzij9f9h]:before,
        .navmenu .active[b-vtpzij9f9h]:before {
            visibility: visible;
            width: 25px;
        }

        .navmenu li:hover > a[b-vtpzij9f9h],

        .navmenu .active[b-vtpzij9f9h],
        .navmenu .active:focus[b-vtpzij9f9h] {
            color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul[b-vtpzij9f9h] {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li[b-vtpzij9f9h] {
                min-width: 200px;
            }

            .navmenu .dropdown ul a[b-vtpzij9f9h] {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i[b-vtpzij9f9h] {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover[b-vtpzij9f9h],
                .navmenu .dropdown ul .active:hover[b-vtpzij9f9h],
                .navmenu .dropdown ul li:hover > a[b-vtpzij9f9h] {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul[b-vtpzij9f9h] {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul[b-vtpzij9f9h] {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul[b-vtpzij9f9h] {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle[b-vtpzij9f9h] {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu[b-vtpzij9f9h] {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul[b-vtpzij9f9h] {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a[b-vtpzij9f9h],
        .navmenu a:focus[b-vtpzij9f9h] {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i[b-vtpzij9f9h],
            .navmenu a:focus i[b-vtpzij9f9h] {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover[b-vtpzij9f9h],
                .navmenu a:focus i:hover[b-vtpzij9f9h] {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover[b-vtpzij9f9h],
            .navmenu .active[b-vtpzij9f9h],
            .navmenu .active:focus[b-vtpzij9f9h] {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i[b-vtpzij9f9h],
                .navmenu .active:focus i[b-vtpzij9f9h] {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul[b-vtpzij9f9h] {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul[b-vtpzij9f9h] {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active[b-vtpzij9f9h] {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active[b-vtpzij9f9h] {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle[b-vtpzij9f9h] {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu[b-vtpzij9f9h] {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul[b-vtpzij9f9h] {
                display: block;
            }
}
/* _content/Waspify/Components/Pages/Contact.razor.rz.scp.css */
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap[b-u7g5lxdxne] {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .info-wrap[b-u7g5lxdxne] {
        padding: 20px;
    }
}

.contact .info-item[b-u7g5lxdxne] {
    margin-bottom: 40px;
}

    .contact .info-item i[b-u7g5lxdxne] {
        font-size: 20px;
        color: var(--accent-color);
        background: color-mix(in srgb, var(--accent-color), transparent 92%);
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
        margin-right: 15px;
    }

    .contact .info-item h3[b-u7g5lxdxne] {
        padding: 0;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .contact .info-item p[b-u7g5lxdxne] {
        padding: 0;
        margin-bottom: 0;
        font-size: 14px;
    }

    .contact .info-item:hover i[b-u7g5lxdxne] {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

.contact .php-email-form[b-u7g5lxdxne] {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .contact .php-email-form[b-u7g5lxdxne] {
        padding: 20px;
    }
}

.contact .php-email-form input[type=text][b-u7g5lxdxne],
.contact .php-email-form input[type=email][b-u7g5lxdxne],
.contact .php-email-form textarea[b-u7g5lxdxne] {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

    .contact .php-email-form input[type=text]:focus[b-u7g5lxdxne],
    .contact .php-email-form input[type=email]:focus[b-u7g5lxdxne],
    .contact .php-email-form textarea:focus[b-u7g5lxdxne] {
        border-color: var(--accent-color);
    }

    .contact .php-email-form input[type=text][b-u7g5lxdxne]::placeholder,
    .contact .php-email-form input[type=email][b-u7g5lxdxne]::placeholder,
    .contact .php-email-form textarea[b-u7g5lxdxne]::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 70%);
    }

.contact .php-email-form button[type=submit][b-u7g5lxdxne] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

    .contact .php-email-form button[type=submit]:hover[b-u7g5lxdxne] {
        background: color-mix(in srgb, var(--accent-color), transparent 25%);
    }
/* _content/Waspify/Components/Pages/Vote-nz.razor.rz.scp.css */
.picture img[b-oje3q04g78] {
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}
/* _content/Waspify/Components/Pages/Vote.razor.rz.scp.css */
.picture img[b-rn018krlr1] {
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}
