﻿#cookie-banner {
    background-color: #1d2e59;
    min-height: 80px;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    text-align: left;
    display: none;
    z-index: 2000;
    max-height: 100%;
    overflow: auto;
}

#cookie-header {
    font-size: large;
    color: white;
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
}

#cookie-text {
    color: white;
    font-size: small;
    text-align: left;
}

#cookie-buttons {
    float: right;
    margin-top: 20px;
}

.cookie-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#cookie-btn-select {
    color: white !important;
    font-weight: 100;
    width: 180px;
    cursor: pointer;
    border-color: #343a40;
}

#cookie-btn-all {
    font-weight: bold;
    width: 180px;
    cursor: pointer;
    color: #212529;
    background-color: #31bff8;
    border-color: #31bff8;
}

#cookie-link {
    font-weight: bold;
}

#cookie-selection {
    color: white;
    padding: 10px;
    margin-top: 10px;
}

.cookie-check {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: medium;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 30px;
}

    .cookie-check input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
}

.cookie-check:hover input ~ .checkmark {
    background-color: #ccc;
}

.cookie-check input:checked ~ .checkmark {
    background-color: #007bff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.cookie-check input:checked ~ .checkmark:after {
    display: block;
}

.cookie-check .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#cookie-btn-details {
    cursor: pointer;
    color: white;
    font-size: small;
}

.cookie-detail-header {
    color: white;
    font-size: small;
    font-weight: bold;
    margin-top: 10px;
}

.cookie-detail-text {
    color: white;
    font-size: small;
}

#cookie-details {
    margin-top: 10px;
    display: none;
}
