#ccc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    font-size: 14px;
}

#ccc-banner .ccc-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#ccc-banner p {
    margin: 0 0 8px 0;
    flex: 1 1 60%;
}

#ccc-banner .ccc-buttons {
    flex: 1 1 35%;
    text-align: right;
}

#ccc-banner button {
    margin-left: 8px;
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

#ccc-accept-all {
    background: #6bb3a6;
    color: #fff;
}

#ccc-customize {
    background: #555;
    color: #fff;
}

#ccc-modal {
    display: none;
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
}

#ccc-modal .ccc-modal-content {
    background: #fff;
    max-width: 480px;
    margin: 20vh auto;
    padding: 20px;
    border-radius: 4px;
}

#ccc-modal h2 {
    margin-top: 0;
}

.ccc-toggle {
    margin: 10px 0;
}

.ccc-toggle label {
    cursor: pointer;
}

.ccc-toggle input {
    margin-right: 8px;
}

.ccc-modal-actions {
    margin-top: 15px;
    text-align: right;
}

.ccc-modal-actions button {
    padding: 8px 14px;
    border-radius: 3px;
    border: none;
    background: #6bb3a6;
    color: #fff;
    cursor: pointer;
}

/* Cookie table on front-end */
table.ccc-cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

table.ccc-cookie-table th,
table.ccc-cookie-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

table.ccc-cookie-table th {
    background: #f7f7f7;
    text-align: left;
	width: 50%;
}

/* Custom styled checkboxes */
#ccc-modal input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 18px;
    height: 18px;
    border: 2px solid #333; /* border color */
    border-radius: 3px;
    background: #fff; /* background when unchecked */
    cursor: pointer;
    position: relative;
    margin-right: 10px;
}

/* When checked */
#ccc-modal input[type="checkbox"]:checked {
    background-color: #26a69a; /* <-- Change this to your desired color */
    border-color: #26a69a;
}

/* Checkmark */
#ccc-modal input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #fff; /* checkmark color */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

input[data-cat="necessary"] {
	opacity: 0.5;
}
