﻿/*//This is only here to demo the position absolute option
//html,body {
      //    height:2000px;
      //    position: relative;
      //}
//The cookie styling*/
div.cookies {
    /*// position: absolute; //Use this if you want it below everything at the bottom of the page*/
    position: fixed; /*//Use this if you want it floating at the bottom of the browser window*/
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 10px 0;
    color: #fff;
    font-size: 15px;
    line-height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(241, 143, 23, 0.9);
}

    div.cookies .container {
        position: relative;
    }

@media only screen and (min-width: 1025px) {
    div.cookies .container {
        height: 40px;
    }
}

div.cookies .container > div {
    display: flex;
    flex-flow: row;
    align-items: center;
}

div.cookies a{
    color:black;
}

div.cookies button {
    outline:none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1.5rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

div.cookies button:not(:last-child) {
    margin-right: 5px;
}

div.cookies button.accept {
    background-color: rgb(30 119 129);
    color: #fff;
}


    div.cookies button.deny {
        background-color: rgb(139 113 41);
        color: #fff;
    }

div.cookies button:hover {
    background-color: #fff;
    color: black;
    border-bottom: none;
}

@media only screen and (max-width: 767px) {
    .mobile-hidden {
        display: none;
    }
}


#cookiesDeniedOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    color: black;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    z-index: 100001;
    backdrop-filter: blur(2px);
}

#cookiesDeniedOverlay .deny-header{
    font-size:4rem;
    margin:20px 0;
}