.cookie-container{
    position: fixed;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1000;
    /* left: initial; */
    /* right: 20px; */
    left: calc(100% - 320px);
    bottom: 10px;
    width: 300px;
    background-color: #7f7f7f;
    padding: 15px 15px;
    color: #fff;
    border: 2px solid #666;
    /* float: right; */
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .cookie-container{
        bottom: 30px !important;
    }
}
.cookie-container form{
    margin: 0 0 10px;
}
.cookie-content{
    display: block;
    position: relative;
    width:100%;
    float: left;
}
.cookie-button .button{
    padding: 0.75em 3em;
}
.button {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #7f7f7f;
    border-radius: 0;
    -webkit-transition: background-color 0.25s ease-out,color 0.25s ease-out;
    transition: background-color 0.25s ease-out,color 0.25s ease-out;
    text-align: center;
    cursor: pointer;
    background-color: #ffffff;
    color: #7f7f7f;
    padding: 0.75em;
    width: 100%;
}
.button.no-bg{
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.button.no-bg:hover{
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
}
.button:hover {
    background-color: #333;
    color: #fff;
    border: 1px solid #fff;
}
@media screen and (max-width: 1024px){
    .cookie-button .button{
        padding: 0.75em 1.5em;
    }
}
@media screen and (max-width: 767px){
    .cookie-button{
        width: 100%;
        margin-top: 10px;
    }
    .cookie-hide{
        width: 100%;
    }
    .cookie-container{
        overflow: hidden;
        position: -webkit-sticky;
        position: -moz-sticky;
        position: -ms-sticky;
        position: -o-sticky;
        position: sticky;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 8px 15px;
    }
    .cookie-container p{
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 2px;   
    }
    
}