/*
 * 
 * COOKIE NOTICE
 *
 */

 html.off-canvas  {
    height: 100%;
    overflow: hidden !important;
    position: relative;
 }

 
#cookie-notice {
    color: #FFF;
    display: none;
    padding: 3vh;
    height: 100vh;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000001;
}

    .dark-background {
        background: rgba(0, 0, 0, 0.56);
        height: 100%;
        width: 100%;
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        overflow-y: scroll;
        display: flex;
    } 

        .center-block {
            margin: auto;
        }

    .cookie-title p {
        line-height: 22px;    
    }

    #cookie-notice p {
        margin: 0 !important;
    }
    
    #cookie-notice a {
        color: #af9774;
    }
    
        #cookie-notice a:hover {
            color: #FFF;
        }
    
        #cookie-notice a .fa {
            margin-top: -3px;
        }

    #cookie-notice .inner {
        max-width: 600px;
        left: 50%;
        transform: translate(-50%, 0);
        padding: 50px;
        background-color: rgb(8, 41, 69);
        margin: 3vh 0;
    }

        #cookie-notice .inner input[type=radio] {
            display: none;
        }

        #cookie-notice .inner label {
            color: #181E24;
            width: 100%;
            cursor: pointer;
            border: 5px solid white;
            padding: 10px;
            background-color: white;
            margin-top: 1em;
            transition: all 0.1s;
        }

            .cookie-option {
                display: flex;
            }

                .img-holder {
                    display: flex;
                    align-items: center;
                }

                    .img-holder img {
                        margin: 0 auto;
                        max-width: 100px;
                    }

        #cookie-notice .inner input[type=radio]:checked + label {
            border: 5px solid #CA9C61;
        }

        #cookie-accept {
            margin: 10px;
        }
    
/*
 * 
 * Fixes
 *
 */
@media (min-width: 1440px) {
    #cookie-notice {
        align-items: center;
    }

        #cookie-notice .inner {
            max-width: 800px;
            margin-bottom: 0;
        }
}
@media screen and ( max-width: 767px ){
    
    #cookie-accept {
        display: none;
    }
    
    #cookie-notice .inner {
        padding: 20px;
    }

        #cookie-notice .inner label {
            text-align: center;
        }

        #cookie-notice .inner img {
            width: 50%;
            left: 25%;
        }

            .cookie-option {
                display: block;
            }

                .img-holder {
                    display: block;
                }

    .header nav.submenu ul li a {
        padding: 2.5px 2px; 
    }   
    
    .blog-item .blog-meta {
        position: relative !important;
        bottom: auto !important;
    }
}

@media screen and ( min-width: 768px ) and ( max-width: 991px ){
    .nav#menu-collapse-menu {
        padding-right: 45px !important;
    }
    
    .primary-nav .navbar-collapse ul li a {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    .logo {
        width: 200px !important;
        margin-top: 10px !important;
    }
    
    
    .header.sticky nav.submenu {
        width: 100%;
    }
    
    .header.sticky nav.submenu ul {
        max-width: 70% !important;
        float: right !important;
    }
    
        .header nav.submenu ul li a {
            padding: 50px 10px !important;
        }
}