.wcagbkplugin:root {
    --disabled-video-wording: "Animations are disabled!";
}
.wcagbkplugin {
	position: fixed;
	right: 0px;
	top: 0px;
	z-index: 9999;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wcagbkplugin h3 {
	color: #fff;
	font-size: 1.25rem;
	padding: 0rem;
	margin-bottom: 0rem;
	line-height: 1.85rem;
}

.wcagbkplugin-btn {
	background-color: #1A3760;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	position: fixed;
	bottom: 20px;
	left: 97px;
	height: 57px;
	width: 57px;
	border-radius: 57px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px;
	z-index: 9999;
}

.wcagbkplugin-header {
	position: relative;
	margin-bottom: .75rem;
}

.wcagbkplugin-close {
	background-color: #1A3760;
	padding: .1rem 0rem;
	color: #fff;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	-ms-border-radius: 1rem;
	-o-border-radius: 1rem;
	text-align: center;
}

.wcagbkplugin-hide {
	float: left;
	overflow: hidden;
}

.wcagbkplugin-options {
	background-color: #1A3760;
	padding: 1rem;
	max-width: 500px;
	min-width: 400px;
	border-top-left-radius: 1.5rem;
	border-bottom-left-radius: 1.5rem;
	box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.08);
}

.wcagbkplugin-options {
	margin-right: -500px;
	transition: all 1s;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
}

.wcagbkplugin-options.show {
	margin-right: 0px;
	transition: all 1s;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
}

.wcagbkplugin-options ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.wcagbkplugin-options ul li {
	flex-basis: calc(33.333% - .67rem);
}

.wcagbkplugin-options ul li:last-child {
	flex-basis: 100%;
}

.wcagbkplugin-options ul li .btn-link {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	padding: 1rem;
	border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	-ms-border-radius: 1rem;
	-o-border-radius: 1rem;
	border: 1px solid rgba(255,255,255,0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.wcagbkplugin-options ul li .btn-link:hover {
	background-color: rgba(255,255,255,0.75);
	color: #1A3760;
}

.wcagbkplugin-options ul li .btn-link i {
	font-size: 1.5rem;
}

/* Buttons */

.wcagbkplugin-high-contrast .wcagbkplugin-high-contrast-btn,
.wcagbkplugin-negative-contrast .wcagbkplugin-negative-contrast-btn,
.wcagbkplugin-grayscale .wcagbkplugin-grayscale-btn,
.wcagbkplugin-links-underline .wcagbkplugin-links-underline-btn,
.wcagbkplugin-disable-animations .wcagbkplugin-disable-animations-btn,
.wcagbkplugin-high-saturation .wcagbkplugin-high-saturation-btn,
.wcagbkplugin-low-saturation .wcagbkplugin-low-saturation-btn {
	background-color: #fff;
	color: #1A3760 !important;
}

/* Grayscale */

.wcagbkplugin-grayscale {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

/* High Contrast */

:root.wcagbkplugin-high-contrast {
	--primary: #ffffff;
	--primaryrgb: 255, 255, 255;
	--lightprimary: #ffffff;
	--secondary: #ffffff;
	--white: #000000;
	--black: #ffffff;
	--blackrgb: 255, 255, 255;
	--lightgrey: #ced4da;
	--green: #198754;
	--lightgreen: #eafef5;
	--red: #dc3545;
	--lightred: #fcf0f1;
	--footer: #000000;
	--footercopy: #000000;
}

.wcagbkplugin-high-contrast #wrapper-footer-full,
.wcagbkplugin-high-contrast #wrapper-footer-full a,
.wcagbkplugin-high-contrast .site-info,
.wcagbkplugin-high-contrast .site-info a {
	color: var(--black);
}

.wcagbkplugin-high-contrast .navbar-brand img,
.wcagbkplugin-high-contrast .footer-logo img {
	filter: grayscale(1) contrast(90);
	-webkit-filter: grayscale(1) contrast(90);
}

.wcagbkplugin-high-contrast .bg-light {
	background-color: #252525 !important;
}

.wcagbkplugin-high-contrast .dropdown-menu {
	background-color: var(--white) !important;
	padding: 1px 0rem 0rem 0rem;
}

.wcagbkplugin-high-contrast .dropdown-menu .nav-item {
	border: 1px solid var(--black);
	border-bottom: 0px;
}

.wcagbkplugin-high-contrast .dropdown-menu .nav-item:last-child {
	border-bottom: 1px solid var(--black);
}

.wcagbkplugin-high-contrast .dropdown-menu .dropdown-item {
	color: var(--black) !important;
}

.wcagbkplugin-high-contrast .dropdown-menu .dropdown-item:hover {
	color: var(--white) !important;
}

.wcagbkplugin-high-contrast .list-group.list-group-root .list-group-item {
	background-color: var(--white);
	border: 1px solid var(--black);
	color: var(--black);
	border-bottom: 0px;
}

.wcagbkplugin-high-contrast .list-group.list-group-root .list-group-item:hover {
	background-color: var(--black);
	color: var(--white);
}

.wcagbkplugin-high-contrast .list-group.list-group-root .list-group-item.active {
	color: var(--black) !important;
}

.wcagbkplugin-high-contrast .list-group.list-group-root .list-group-item.active:hover {
	color: var(--white) !important;
}

.wcagbkplugin-high-contrast .list-group.list-group-root .list-group-item:last-child {
	border-bottom: 1px solid var(--black);
}

.wcagbkplugin-high-contrast .card,
.wcagbkplugin-high-contrast .card-header {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .select2-container--default .select2-selection--single {
	background-color: var(--black) !important;
	color: var(--white) !important;
}

.wcagbkplugin-high-contrast .select2-dropdown .select2-results__option {
	color: var(--white) !important;
}

.wcagbkplugin-high-contrast .woocommerce-account .woocommerce-MyAccount-content .navbar-collapse {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .woocommerce-account .woocommerce-MyAccount-content input[type=range] + input {
	background-color: var(--black) !important;
	color: var(--white) !important;
}

.wcagbkplugin-high-contrast .acf-radio-list label,
.wcagbkplugin-high-contrast .custom-checkbox label {
	color: var(--black) !important;
}

.wcagbkplugin-high-contrast .custom-radio input,
.wcagbkplugin-high-contrast .custom-checkbox input {
	background-color: var(--black) !important;
}

.wcagbkplugin-high-contrast .acf-input-prepend {
	color: var(--white) !important;
}

.wcagbkplugin-high-contrast .acf-google-map {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .location-custom-field .form-control {
	background-color: var(--white) !important;
	color: var(--black) !important;
	border-bottom: 1px solid var(--black) !important;
}

.wcagbkplugin-high-contrast .wp-block-search .btn-primary {
	background-color: var(--white) !important;
	color: var(--black) !important;
}

.wcagbkplugin-high-contrast .form-select-cities select,
.wcagbkplugin-high-contrast .wp-block-search .form-control {
	border: 1px solid var(--white) !important;
}

.wcagbkplugin-high-contrast .wp-block-search .form-select-from:before,
.wcagbkplugin-high-contrast .wp-block-search .form-select-cities:before,
.wcagbkplugin-high-contrast .wp-block-search .form-select-to:before,
.wcagbkplugin-high-contrast .wp-block-search .form-select-guests:before {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker-header {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .ui-datepicker-next,
.wcagbkplugin-high-contrast .ui-datepicker-prev {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker-header {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker .ui-datepicker-prev,
.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker .ui-datepicker-next,
.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker th,
.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker td .ui-state-default {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker th {
	border-top: 1px solid var(--black) !important;
	border-right: 1px solid var(--black) !important;
}

.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker th:last-child {
	border-right: 0px !important;
}

.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-widget-content {
	border: 1px solid var(--black) !important;
}

.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker td .ui-state-default {
	color: var(--black);
}

.wcagbkplugin-high-contrast .product-type-accommodation-booking .wc-bookings-date-picker:after {
	background-color: var(--white) !important;
	color: var(--black) !important;
}

.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker td.selection-start-date .ui-state-default {
	background: linear-gradient(-26deg, var(--green) 0%, var(--green) 51%, var(--white) 0%) !important;
}

.wcagbkplugin-high-contrast .wc-bookings-date-picker .ui-datepicker td.selection-end-date .ui-state-default {
	background: linear-gradient(-26deg, var(--white) 0%, var(--white) 51%, var(--green) 0%) !important;
}

.wcagbkplugin-high-contrast .wc-bookings-booking-form .wc-bookings-booking-cost {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.wcagbkplugin-high-contrast .woocommerce div.product .woocommerce-tabs ul.tabs li {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .marker-product-title,
.wcagbkplugin-high-contrast .marker-product-price,
.wcagbkplugin-high-contrast .marker-product-location {
	color: var(--white) !important;
}

.wcagbkplugin-high-contrast .message-container.justify-content-start .message,
.wcagbkplugin-high-contrast .message-container.justify-content-end .message {
	color: var(--white) !important;
}

.wcagbkplugin-high-contrast #formDeleteConfirm input.btn {
	color: var(--black) !important;
}

.wcagbkplugin-high-contrast .show-password-input {
	color: var(--white) !important;
}

.wcagbkplugin-high-contrast .wp-block-media-text {
	background-color: var(--white) !important;
}

.wcagbkplugin-high-contrast .carousel-control-next-icon,
.wcagbkplugin-high-contrast .carousel-control-prev-icon {
	background-color: #000;
}


/* Negative Contrast */

:root.wcagbkplugin-negative-contrast {
	--primary: #000000;
	--primaryrgb: 0, 0, 0;
	--lightprimary: #000000;
	--secondary: #000000;
	--white: #ffffff;
	--black: #000000;
	--blackrgb: 0, 0, 0;
	--lightgrey: #ced4da;
	--green: #198754;
	--lightgreen: #eafef5;
	--red: #dc3545;
	--lightred: #fcf0f1;
	--footer: #ffffff;
	--footercopy: #ffffff;
}

.wcagbkplugin-negative-contrast #wrapper-footer-full,
.wcagbkplugin-negative-contrast #wrapper-footer-full a,
.wcagbkplugin-negative-contrast .site-info,
.wcagbkplugin-negative-contrast .site-info a {
	color: var(--black);
}

.wcagbkplugin-negative-contrast .navbar-brand img,
.wcagbkplugin-negative-contrast .footer-logo img {
	filter: grayscale(1) contrast(90);
	-webkit-filter: grayscale(1) contrast(90);
}

.wcagbkplugin-negative-contrast .footer-logo img {
	filter: grayscale(1) contrast(90) invert(1);
	-webkit-filter: grayscale(1) contrast(90) invert(1);
}

.wcagbkplugin-negative-contrast .wp-block-search .btn-primary {
	background-color: var(--white) !important;
	color: var(--black) !important;
}

/* High Saturation */

.wcagbkplugin-high-saturation {
    filter: saturate(2);
    -webkit-filter: saturate(2);
}

/* Low Saturation */

.wcagbkplugin-low-saturation {
    filter: saturate(20%);
    -webkit-filter: saturate(20%);
}

/* Links Underline */

.wcagbkplugin-links-underline a,
.wcagbkplugin-links-underline button {
    text-decoration: underline !important;
}

/* Hide Video */

.wcagbkplugin-disable-animations body *,
.wcagbkplugin-disable-animations body *::before,
.wcagbkplugin-disable-animations body *::after {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    animation: none !important;
    -ms-transition: none !important;
}

@media (max-width: 767px) {
	.wcagbkplugin {
		margin-top: 5rem;
	}
}
