﻿body {
}

.responsive {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.productResponsive {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.responsivSmIcon {
    width: 100%;
    max-width: 30px;
    height: auto;
}

.centerImage {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.topBar {
    background-color: #2E4866;
    color: #FFFFFF;
}

.menu {
    background-color: #239F9A;
    color: #FFFFFF;
}

.leftCell {
    text-align: left;
}

.middleCell {
    text-align: center;
}

.rightCell {
    text-align: right;
    justify-content: right;
}

.footer {
    background-color: #239F9A;
    color: #FFFFFF;
    font-size: small;
}

    .footer a:link {
        text-decoration: none !important;
        color: #FFFFFF !important;
    }

    .footer a:hover {
        text-decoration: none !important;
        color: #2E4866 !important;
    }

    .footer a:visited {
        text-decoration: none !important;
        color: #FFFFFF !important;
    }

a.button {
    padding: 1px 6px;
    border: 1px outset buttonborder;
    border-radius: 3px;
    color: buttontext;
    background-color: buttonface;
    text-decoration: none;
}

#cb-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-radius: 0;
    display: none;
}

.topnav {
    background-color: #239F9A;
    overflow: hidden;
}

    /* Style the links inside the navigation bar */
    .topnav a {
        float: left;
        display: block;
        color: #FFFFFF;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }

        /* Change the color of links on hover */
        .topnav a:hover {
            background-color: #2E4866;
            color: #FFFFFF;
        }

        /* Add an active class to highlight the current page */
        .topnav a.active {
            background-color: #239F9A;
            color: #FFFFFF;
        }

    /* Hide the link that should open and close the topnav on small screens */
    .topnav .icon {
        display: none;
    }
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
        }
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #334559; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

    #myBtn:hover {
        background-color: #ffffff; /* Add a dark-grey background on hover */
    }