/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */

.cookie-b-background-filter {
    /* height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center; */
    width: 100%;
}

.cookie-b-wrapper {
    background-color: lightblue;
    display: flex;
    flex-direction: column;
    width: 100%;   
}

.cookie-b-intro {
    background-color: lightblue;
    text-align: center;
    margin: 10px 0 0 0;
    padding: 5px 10px 0 10px;
}

.cookie-b-pp-link {
    text-align: center;
    margin: 5px;
    display: block;
    text-decoration: underline;
    line-height: 1.6em;
}

.cookie-b-table-container {
    overflow: auto;
    position: relative;
    margin-top: 10px;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.cookie-b-table-wrapper {
    height: 200px;
    max-width: 1200px;
    margin: auto;
    overflow: auto;
    margin-bottom: 10px;
}

table {
    width: 100%;
    background-color: white;
    border-spacing: 0;
    border-collapse: collapse;
}

thead, tr th {
    position: sticky;
    top: 0;
}

.cookie-b-table-wrapper tr:nth-of-type(2n+1) {
    background: #eee;
}

.cookie-b-table-wrapper th {
    position: sticky;
    background-color: #666;
    color: #fff;
    border: 1px solid lightgrey;
    border-spacing: 0;
    text-align: left;
    padding: 10px;
}

.cookie-b-table-wrapper td {
    padding: 10px;
    border: 1px solid lightgrey;
    text-align: left;
}

input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    vertical-align: middle;
}

button {
    clear: none;
    margin: 5px;
    padding: 5px 10px;
    text-align: center;
    font-size: 0.97rem;
    font-family: "Roboto", sans-serif;
}

.hide {
    display: none;
}

dialog {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
}

:modal {
    border: none;
    background-color: transparent;
    max-width: 100vw !important;
}

::backdrop {
    background-image: linear-gradient(
      45deg,
      magenta,
      rebeccapurple,
      dodgerblue,
      green
    );
    opacity: 0.75;
  }