body {
    font-family: Arial, sans-serif;
    margin: 0px;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px 30px 20px 20px;
    box-sizing: border-box;
    flex-wrap: wrap;
    word-wrap: break-word;
    word-break: break-word;
  }

hr {
    border: 0;
    border-top: 1px solid hsla(0, 0%, 0%, 0.5);
    margin: 40px 0px 22px 0px;
}

.cookie-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-privacy-statement-link {
    color: black; 
    margin-left: -1px;
    text-decoration: none;
}

.custom-privacy-statement-link:hover,
.custom-privacy-statement-link:hover .link-icon-cookie,
.link-icon-cookie:hover,
.link-icon-cookie:hover .custom-privacy-statement-link {
    color: #808080;
}

.custom-privacy-statement-link:hover .link-icon-cookie svg path,
.link-icon-cookie:hover svg path {
    fill: #808080;
}


.link-icon-cookie {
    width: 22px;
    height: 22px;
    display: inline-block;
    position: relative;
    top: 6px;
    margin-left: 2px;
}




input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

label {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px; /* 200px / 3.5 */
    height: 30px; /* 100px / 3.5 */
    background: grey;
    display: block;
    border-radius: 30px; /* 100px / 3.5 */
    position: relative;
    border: 4px solid grey;
    transition: 0.25s ease;
}

label:hover {
    background: black;
    border: 4px solid black;
}

label:after {
    content: '';
    position: absolute;
    top: 0px; /* 5px / 3.5 */
    left: 0px; /* 5px / 3.5 */
    width: 30px; /* 90px / 3.5 */
    height: 30px; /* 90px / 3.5 */
    background: #fff;
    border-radius: 30px; /* 90px / 3.5 */
    transition: 0.3s;
}

input:checked + label {
    background: #bada55;
    border: 4px solid #bada55;;
}

input:checked + label:hover {
    filter: brightness(1.1);
}

input:checked + label:after {
    left: calc(100% - 1px); /* 5px / 3.5 */
    transform: translateX(-100%);
}

label:active:after {
    width: 40px; /* 130px / 3.5 */
}




/* ACCEPT DECLINE BUTTONS */


button {
    padding: 10px 20px;
    border-radius: 6px;
    border-width: 2px;
    border-style: solid;
    font-size: 20px;
    font-family: "Ubuntu", sans-serif;
    cursor: pointer;
    transition: 0.25s ease;
    margin: 10px 10px 0px 0px;
    min-width: 150px;
}
button > span {
    position: relative;
    z-index: 1;
}


button.bg-show:hover {
    color: #FFF;
    background: #000000;
    border-color: #000000;
}

button.bg-show {
    color: #000000;
    border-color: #000000;
    background: transparent;
}


/* CUSTOM SCROLL BAR */
/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: grey #f1f1f1;
}
/* WebKit Browsers */
html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
    background: black;
}




