.hidden
{
    display: none;
}
#cookies-agreement {
    position: fixed;
    bottom: 15px;
    left: 15px;
    max-width: 450px;
    line-height: 1.5;
    background-color: rgba(255, 255, 255, .95);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .1);
    height: auto;
    max-height: 70%;
    overflow-y: auto;
    box-shadow: 5px 5px 20px -5px rgba(0, 0, 0, .1);
    z-index: 20;
}

#cookies-agreement::before {
    content: url('https://webareal.cz/img/cookie.svg');
    opacity: .6;
    display: block;
    margin-bottom: 10px;
}

#cookies-agreement .cookies-notify__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 3px;
}

#cookies-agreement .cookies-notify__detail_button {
    color: #0d6efd;
    cursor: pointer;
}

#cookies-agreement .cookies-notify__detail_button:hover {
    text-decoration: underline;
}

#cookies-agreement .cookies-notify__button {
    margin-top: 10px;
}

#cookies-agreement .cookies-notify__checkboxes {
    display: flex;
    grid-gap: 1rem;
    padding: 10px 0;
    margin-top: 10px;
    overflow-x: auto;
}

#cookies-agreement .cookies-notify__checkboxes .checkbox-custom.checkbox-default.cookies-notify__checkbox {
    display: flex;
    align-items: center;
}

#cookies-agreement .cookies-notify__checkboxes .checkbox-custom.checkbox-default.cookies-notify__checkbox input {
    margin: 0 5px 0 0;
}

#cookies-agreement .cookies-notify__checkboxes .checkbox-custom.checkbox-default.cookies-notify__checkbox label {
    margin: 0;
}

#cookies-agreement #cookies-notify__cookie_types {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1rem;
    padding: 10px 0;
}

#cookies-agreement #cookies-notify__cookie_types .cookies-notify__cookie_type {
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 3px;
    padding: 5px 10px;
}

#cookies-agreement #cookies-notify__cookie_types .cookies-notify__cookie_type.cookie-active,
#cookies-agreement #cookies-notify__cookie_types .cookies-notify__cookie_type:hover {
    background-color: #2d3a42;
    color: #fff;
}

#cookies-agreement .cookies-notify__detail_box {
    margin-top: 20px;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0 0 0;
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 4px;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table thead {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 10px 20px;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table thead,
#cookies-agreement .table.cookies-notify__cookie_detail_table tbody {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table thead tr {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table thead tr th:first-child {
    display: none;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table thead tr th {
    border: none;
    padding: 0;
    font-size: 16px;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table tbody {
    padding: 0 20px;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table tbody tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table tbody tr:last-child {
    border: none;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table tbody tr td {
    border: none;
    font-size: 14px;
    padding: 2px 0;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table tbody tr td:first-child {
    order: 1;
    width: 50%;
    font-weight: bold;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table tbody tr td:last-child {
    order: 2;
    width: 50%;
    text-align: right;
    font-weight: bold;
}

#cookies-agreement .table.cookies-notify__cookie_detail_table tbody tr td:nth-child(2) {
    order: 3;
    width: 100%;
}

@media only screen and (max-width: 479px) {
    #cookies-agreement {
        width: 95%;
        left: 0;
        bottom: 10px;
        margin: auto;
        right: 0;
    }
}

.cookies-notify__button
{
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}
#cookies-notify__disagree
{
    border: 1px solid #cfcfcf;
}
