.cookie-consent-banner *:focus,
.pwd-cookie-consent-customize *:focus,
.pwd-cookie-consent-customize .round input[type="checkbox"]:focus + .round-label {
	outline: 2px solid #000000;
	outline-offset: 2px;
	box-shadow: 0 0 0 6px #ffffff;
}

.cookie-consent-banner *:focus:not(:focus-visible),
.pwd-cookie-consent-customize *:focus:not(:focus-visible),
.pwd-cookie-consent-customize .round input[type="checkbox"]:not(:focus-visible) + .round-label {
	outline: none;
	box-shadow: none;
}

.cookie-consent-banner h2,
.cookie-consent-banner p,
.pwd-cookie-consent-customize h2,
.pwd-cookie-consent-customize label,
.pwd-cookie-consent-customize p {
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

.cookie-consent-banner .banner-buttons button.banner-button,
.pwd-cookie-consent-customize button.banner-button,
button.button-choose-cookies {
	margin: 0;
	padding: 15px 20px;
	font-size: 100%;
}

.cookie-consent-banner,
.pwd-cookie-consent-customize {
	line-height: 1.5;
}

.cookie-consent-banner .banner-buttons,
.pwd-cookie-consent-customize .pwd-cookie-consent-customize-update-button-container {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.cookie-consent-banner {
    background-color: #ffffff;
    bottom: 0;
    position: fixed;
    z-index: 50;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 500ms;
	box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}

.cookie-consent-banner.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 500ms, opacity 500ms;
}

.cookie-consent-banner .banner-row {
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.cookie-consent-banner .banner-text,
.cookie-consent-banner .banner-title {
    color: #000000;
}

.cookie-consent-banner .banner-text a {
    background: none;
    color: #1a0dab;
    margin: auto;
    padding: initial;
    text-decoration: underline;
}
.cookie-consent-banner .banner-text a:visited {
    color: #609;
}
.cookie-consent-banner .banner-text a:hover {
    text-decoration-color: #1a0dab;
}

.cookie-consent-banner button.banner-button.button-choose-cookies {
    display: flex;
    align-items: center;
    border: none !important;
}

.cookie-consent-banner .banner-icon-cog {
	background-color: currentColor;
	width: 20px;
	height: 20px;
	-webkit-mask: url("/wp-content/plugins/pwd-cookie-consent/assets/images/settings-icon.svg") no-repeat center;
	mask: url("/wp-content/plugins/pwd-cookie-consent/assets/images/settings-icon.svg") no-repeat center;
	margin-right: 10px;
}

.pwd-cookie-consent-customize {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
    -webkit-box-shadow: 3px 3px 5px 6px #ccc;
    -moz-box-shadow: 3px 3px 5px 6px #ccc;
    box-shadow: 3px 3px 5px 6px #ccc;
}

.pwd-cookie-consent-customize[aria-hidden="true"] {
	display: none;
}
.pwd-cookie-consent-customize #pwd-cookie-consent-customize-overlay {
	background-color: rgb(0 0 0 / 60%);
	opacity: 0.5;
	z-index: 90000;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.pwd-cookie-consent-customize .pwd-cookie-consent-customize-inner {
	z-index: 100000;
    background-color: #ffffff;
    max-width: 1200px;
    width: 100%;
    max-height: calc(100% - 40px);
    margin: 20px;
    padding: 40px 20px;
    overflow-y: scroll;
    box-shadow: 0 0 20px rgb(0 0 0 / 80%);
    text-align: left;
}

@media screen and (min-width: 1200px) {
    .pwd-cookie-consent-customize .pwd-cookie-consent-customize-inner {
        padding: 40px;
    }
}

h2.customize-consent-title {
    color: #000000;
    max-width: 100%;
    padding-bottom: 20px;
}

.pwd-cookie-consent-customize-consent-details {
    margin: 20px 0;
}

.pwd-cookie-consent-customize-detail-wrapper {
    margin-bottom: 20px;
}

.pwd-cookie-consent-customize-details-left-column + * {
	margin-top: 5px;
}

.pwd-cookie-consent-customize .round {
	display: flex;
	position: relative;
	align-items: center;
	line-height: 1.3;
}

label[id="necessary-cookies"] {
    pointer-events: none;
}

.pwd-cookie-consent-customize .round-label {
	align-items: center;
    background-color: #fff;
    border: 1px solid #888;
    cursor: pointer;
    height: 28px;
    left: 0;
    position: relative;
    top: 0;
    width: 28px;
    flex-shrink: 0;
}

.pwd-cookie-consent-customize .round-label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
}

.pwd-cookie-consent-customize .round .pwd-cookie-customize-input-label-text {
	font-size: 1.3em;
	padding-left: 10px;
	flex-shrink: 2;
}

.pwd-cookie-consent-customize .round input[type="checkbox"] {
	opacity: 0;
	position: absolute;
}

.pwd-cookie-consent-customize .round input[type="checkbox"]:checked + .round-label {
    background-color: #4aa54f;
    border-color: #4aa54f;
}

.pwd-cookie-consent-customize .round input[type="checkbox"]:disabled + .round-label {
    background-color: #888;
    border-color: #888;
}

.pwd-cookie-consent-customize .round input[type="checkbox"]:checked + .round-label:after {
    opacity: 1;
}
