#CCManager_cookie_button {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 5px;
    margin: 5px;
    border: 0;
    cursor: pointer;
    background-color: transparent;
    border-radius: 116px;
    display: flex;
    z-index: 9000;
}

#CCManager_modal_button_svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

#CCManager_overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.2;
    z-index: 9998;
    background-color: rgb(0, 0, 0);
}

#CCManager_modal {
    z-index: 9999;
    position: fixed;
    bottom: 20%;
    right: 10px;
    background-color: #01141a;
    color: white;
    padding: 20px 5px;
    transition: opacity 0.5s linear;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    border: 2px solid white;
    border-radius: 10px;
    opacity: 0;
}

#CCManager_modal a {
    color: #ddd;
}

#CCManager_modal_text {
    padding: 20px;
}

#CCManager_modal_buttons,
#CCManager_preferences_buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.CCManager_modal_button {
    margin: 5px;
    padding: 5px;
    cursor: pointer;
    background-color: transparent;
    border: 2px white solid;
    border-radius: 10px;
    color: white;
    transition: background-color 0.5s linear, color 0.5s linear;
    font-size: 20px;
}

.CCManager_modal_button:hover {
    color: black;
    background-color: white;
}

#CCManager_modal_moreinfo {
    padding-top: 15px;
    padding-bottom: 15px;
}

#CCManager_modal_moreinfo_link {
    text-decoration: none;
    color: #fff;
}

#CCManager_modal_moreinfo_link:hover {
    text-decoration: underline;
}

#CCManager_overlay.CCManager_hidden,
#CCManager_modal.CCManager_hidden {
    display: none;
}

#CCManager_modal.CCManager_opacity-100 {
    opacity: 1;
}

#CCManager_modal.CCManager_opacity-0 {
    opacity: 0;
}

#CCManager_preferences {
    display: none;
    flex-direction: column;
}

#CCManager_preferences.visible {
    display: flex;
}

.CCManager_preference_option {
    padding: 5px;
    background-color: transparent;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}

.CCManager_preference_option input {
    margin-right: 10px;
}

.CCManager_preference_option:hover {
    background-color: white;
    color: black;
}
