﻿
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
html {
    position:relative;
    min-height:100%;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

body {
    padding-top: 60px;
    margin-bottom: 60px;
}


/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

.carousel {
    background: linear-gradient(to bottom, #808080, #e0e0e0 100%);
    /*background-color: #000000;*/
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

    /* QR code generator */
    #qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}


/* Cookie Alert styles*/
.cookiealert {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(-100%);
    transition: all 700ms ease-out;
}

    .cookiealert.show {
        opacity: 1;
        transform: translateY(0%);
        transition-delay: 1000ms;
    }

    .cookiealert a {
        text-decoration: underline
    }

    .cookiealert .acceptcookies {
        margin-left: 10px;
        vertical-align: baseline;
    }

/* Sticky Footer */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}

    .footer > .container {
        padding-right: 15px;
        padding-left: 15px;
    }