﻿





/*Cookie Consent Begin*/
#cookieConsent {
    /*background-color: rgba(20,20,20,0.8);*/
    background-color: gray;
    min-height: 26px;
    font-size: 14px;
    color: white;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: "Trebuchet MS",Helvetica,sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}

    #cookieConsent a {
        color: #F1D600;
        text-decoration: none;
    }

#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}

    #closeCookieConsent:hover {
        color: #FFF;
    }

#cookieConsent a.cookieConsentOK {
    background-color: #F1D600;
    color: #000;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}

    #cookieConsent a.cookieConsentOK:hover {
        background-color: #E0C91F;
    }
/*Cookie Consent End*/

@-moz-keyframes fadingit {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadingit {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadingit {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.MyMenu {
    -moz-animation: fadingit 3s;
    -o-animation: fadingit 3s;
    animation: fadingit 3s;
}


.navbar-inverse {
    background-color: steelblue !important;
    /*border-color: #080808;*/
}

    .navbar-inverse a {
        color: white !important;
    }

.dropdown-menu a {
    color: black !important;
}

.navbar .navbar-nav > li.open > a:hover,
.navbar .navbar-nav > li.open > a:focus {
    background-color: #567994;
    color: #fff;
}



.loader {
    z-index: 1;
    width: 100px;
    height: 100px;
    margin: -65px 0 0 -75px;
/*    border: 20px solid steelblue;
    border-radius: 50%;
    border-top: 15px solid white;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;*/
}

.loader-position {
    display: none;
    position: absolute;
    top: 40vh;
    left: 65vw;
}

.loader-label {
    display: none;
    position: absolute;
    top: 45vh;
    left: 60vw;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

 