/*
Copyright (C) 2022 Josef Jabálek  <jabalek@genes.cz>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
/* 
    Created on : 1. 4. 2022, 5:12:32
    Author     : Josef Jabálek  <jabalek@genes.cz>
*/

.cookie-consent-ready {
    display: none;
}


.cookie-consent {
    position: fixed;
    bottom: 0px;
    background-color: white;
    padding:5px;
    z-index: 9999;
    width: 100%;
    max-height: 90%;
    overflow-y: scroll;
    box-shadow: 0 0 20px 0 rgb(10 10 10 / 50%);
}

.cookie-consent .h2 {
    border-bottom: 1px solid #ebab3f;
    text-align: center;
    padding-bottom: 10px;
}

.cookie-consent p {
    font-weight: 300;
    font-size: 90%;
}
.cookie-consent__body {
    max-width:1000px;
    margin: 0 auto;
    text-align: left;
}
.cookie-settings-form__body {
    float: left;
    width:66%;
    max-width: 800px;
}
.cookie-settings-form__controls {
    float: right;
    width:33%;
    min-width: 200px;
}
.cookie-settings-form__box {
    
}
.cookie-settings-form__box > div {
    
}
.cookie-consent ul li {
    list-style: none;
}
.cookie-consent button {
    width: 100%;
    background-color: #ebab3f;
    border:none;
    padding:10px 15px;
    margin-bottom: 10px;
    color:white;
    text-align: left;
    box-shadow: rgb(20, 20, 20) 1px 1px 0px;
}
.cookie-consent button.cookie-settings-form-control--plain, .cookie-consent button.cookie-settings-form-control--custom {
    background-color:#FAFAFA;
    color:#333;
}
.cookie-consent button.cookie-settings-form-control--plain:hover, .cookie-consent button.cookie-settings-form-control--custom:hover {
    text-decoration: none;
}
.cookie-settings-form-level {
    margin-bottom: 15px;
}
.icheckbox {
    display: inline-block;
    padding-right: 10px;
}  
.icheckbox input {
    width:20px;
    height:20px;
}
.cookie-consent-ready {
    display: none;
}

@media (max-width:767px) {
    .cookie-consent .h2 {
        font-size: 90%;
    }
    .cookie-consent p {
        font-size: 12px;
    }
    
    .cookie-settings-form__body {
        width:100%;
    }
    .cookie-settings-form__controls {
        width:100%;
    }
}