/*!
Theme Name: EDkan
Theme URI: http://underscores.me/
Author: MX-Studio
Author URI: https://www.mx-studio.pl/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: edkan
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

EDkan is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

:root {
	--container: 1296px;

	--text-size: 16px;
	--text-size-sm: 14px;
	--text-size-md: 18px;
	--h1-size: 64px;
	--h2-size: 48px;
	--h3-size: 36px;
	--h4-size: 28px;
	--h5-size: 24px;
	--h6-size: 20px;

	--black: rgba(0,0,0,.9);
	--white: #FFFFFF;
}

body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Exo 2', sans-serif;
}
a, a:hover {
	text-decoration: none;
	color: var(--black);
	transition: .25s;
}
img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
	margin: 0;
}
.bg-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px;
	line-height: 1.2;
	font-weight: 700;
}
p, ul, ol, blockquote, .wp-caption, .gallery {
	margin: 0 0 20px;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child, .wp-caption:last-child, .gallery:last-child {
	margin-bottom: 0;
}


.form-field {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 20px;
}
.form-field > label {
	display: block;
	width: 100%;
	font-size: var(--text-size);
	line-height: 1.2;
	margin-bottom: 10px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea {
	width: 100%;
	outline: none;
	border: 1px solid rgba(0,0,0,.45);
	background: none;
	border-radius: 0px;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Exo 2', sans-serif;
	line-height: 1.5;
	padding: 10px 20px;
}
textarea {
	height: 80px;
}
.wpcf7-not-valid-tip {
	display: block;
	margin-top: 2px;
	font-size: var(--text-size-small);
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	font-size: var(--text-size-small);
}
.wpcf7-spinner {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.form-field-policy {
	font-size: 12px;
	line-height: 1.2;
}
.form-field-policy a {
	text-decoration: underline;
}
.wpcf7-acceptance {
	display: block;
	cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
}
.wpcf7-acceptance .wpcf7-list-item label {
	display: block;
	position: relative;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	position: relative;
	display: block;
	padding-left: 20px;
}
.wpcf7-acceptance input[type="checkbox"] {
	-webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: inline-block;
  border: 1px solid var(--black);
  width: 14px;
  height: 14px;
  outline: 0;
  padding: 2px;
  margin-right: 0;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.wpcf7-acceptance input[type="checkbox"]:checked:after {
  content: "";
  width: 4px;
  height: 7px;
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
  display: block;
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(45deg);
}


.btn {
	--bs-btn-padding-x: 40px;
	--bs-btn-padding-y: 15px;
	--bs-btn-box-shadow: none;
	--bs-btn-focus-box-shadow: none;
	font-weight: 600;
	border-radius: 0;
	transition: color .25s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out,box-shadow .25s ease-in-out;
}
.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--black);
	--bs-btn-border-color: var(--black);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #000000;
	--bs-btn-hover-border-color: #000000;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #000000;
	--bs-btn-active-border-color: #000000;
	--bs-btn-active-shadow: none;
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--black);
	--bs-btn-disabled-border-color: var(--black);
}
.btn-secondary {
	--bs-btn-color: var(--black);
	--bs-btn-bg: #FFFFFF;
	--bs-btn-border-color: #FFFFFF;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #000000;
	--bs-btn-hover-border-color: #000000;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #000000;
	--bs-btn-active-border-color: #000000;
	--bs-btn-active-shadow: none;
	--bs-btn-disabled-color: var(--black);
	--bs-btn-disabled-bg: #FFFFFF;
	--bs-btn-disabled-border-color: #FFFFFF;
}



.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.soc-links li {
	position: relative;
	margin-left: 15px;
}
.soc-links li:first-child {
	margin-left: 0;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.soc-links li a svg path {
	fill: var(--black);
}
.soc-links li a:hover svg path {
	fill: #000000;
}


.section {
	position: relative;
	padding-top: 90px;
	padding-bottom: 90px;
	z-index: 1;
}
.section-md {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	z-index: 1;
}
.heading {
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}
.heading h2 {
	font-size: var(--h2-size);
	font-weight: 400;
}




.owl-nav {
	position: relative;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.owl-nav button {
	flex: 0 0 50px;
	max-width: 50px;
	height: 34px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
	border: 1px solid var(--black) !important;
}
.owl-nav button.owl-prev {
	margin-left: 0;
	transform: scale(-1, 1);
}
.owl-nav button.disabled {
	opacity: .45;
	cursor: not-allowed !important;
}
.owl-nav button:hover {
	background: var(--black) !important;
	border-color: var(--black) !important;
}
.owl-nav button:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow.svg);
	mask-image: url(images/arrow.svg);
	background-color: var(--black);
	flex: 0 0 12px;
	max-width: 12px;
	width: 12px;
	height: 12px;
	transition: .25s;
}
.owl-nav button:hover:before {
	background-color: var(--white);
}



.topbar {
	position: relative;
	background: #c3c3c3;
	padding: 8px 0;
	z-index: 1;
}
.topbar-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.topbar-contacts {
	display: flex;
	font-size: var(--text-size-sm);
}
.topbar-contacts p {
	position: relative;
	margin-bottom: 0;
	margin-right: 30px;
	color: rgba(0,0,0,.9);
	display: flex;
	align-items: center;
}
.topbar-contacts p:last-child {
	margin-right: 0;
}
.topbar-contacts p a {
	color: rgba(0,0,0,.9);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.topbar-contacts p a:hover {
	color: #000000;
}
.topbar-contacts p .material-symbols-outlined {
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	font-size: 16px;
}



.header {
	position: relative;
	background: var(--white);
	padding: 15px 0;
	z-index: 99;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo {
	position: relative;
}
.header-logo-top {
	display: flex;
	align-items: center;
	border-top: 2px solid;
	border-bottom: 2px solid;
	padding: 2px 0;
	font-size: 25px;
}
.header-logo-top img {
	max-height: 64px;
	margin-right: 20px;
}
.header-logo-bottom {
	margin-top: 8px;
	font-size: 17px;
}
.main-menu {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.main-menu li {
	margin-right: 35px;
}
.main-menu li:last-child {
	margin-right: 0;
}
.main-menu li a {
	font-size: rgba(0,0,0,.7);
	font-weight: 600;
	letter-spacing: .02em;
}
.main-menu li a:hover {
	color: #141b1e;
}



.footer {
	position: relative;
	z-index: 1;
}
.footer-wrap {
	position: relative;
	border-top: 1px solid #d4d4d4;
	padding: 20px 0;
	z-index: 1;
}
.copyright {
	color: rgba(0,0,0,.6);
	text-align: center;
	font-size: var(--text-size-sm);
}




.hero-section {
	position: relative;
	min-height: 480px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-wrap {
	position: relative;
	display: inline-block;
}
.hero-wrap h1 {
	font-weight: 600;
	text-transform: uppercase;
}
.hero-wrap p {
	font-size: 20px;
	border-top: 2px solid;
	border-bottom: 2px solid;
	padding: 10px;
}
.hero-phone {
	font-size: var(--h2-size);
}


.services-items {
	margin-bottom: -60px;
}
.services-item {
	margin-bottom: 60px;
}
.services-item__wrap {
	display: flex;
}
.services-item__image {
	flex: 0 0 80px;
	max-width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 24px;
}
.services-item__info {
	flex: auto;
	max-width: 100%;
	font-size: 16px;
}
.services-item__info h3 {
	font-size: calc(var(--h4-size) / 1.12);
	font-weight: 600;
	margin-bottom: 10px;
}
.services-item__info p {
}
.services-item__info p:last-child {
	margin-bottom: 0;
}
.services-item__info p a {
	display: inline-flex;
	align-items: center;
	text-decoration: underline;
	text-decoration-style: dashed;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
}
.services-item__info p a:hover {
	opacity: .8;
}
.services-item__info p a:after {
	content: '';
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/arrow.svg);
  mask-image: url(images/arrow.svg);
  background-color: var(--black);
  flex: 0 0 12px;
  max-width: 12px;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  margin-bottom: -5px;
  transition: .25s;
}


.singleServices-wrap {
	overflow: hidden;
}
.singleServices-image {
	float: left;
	margin: 0 40px 30px 0;
	max-width: 450px;
}


.about-section {
	overflow: hidden;
}
.about-image {
	position: relative;
	height: 100%;
	z-index: 1;
}
.about-image span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.about-info {
	padding-left: 30px;
	padding-right: calc((100vw - var(--container)) / 2);
}


.reviews-section {
	color: var(--white);
}
.reviews-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.reviews-bg:after {
	content: '';
	background: rgba(0,0,0,.75);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.reviews-section .heading h2 a {
	color: var(--white);
}
.reviews-section .heading h2 a:hover {
	text-decoration: underline;
}
.reviews-items {
	margin-bottom: -40px;
}
.reviews-item {
	margin-bottom: 40px;
}
.reviews-item__wrap {
	position: relative;
	text-align: center;
}
.reviews-item__icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 20px;
	border: 2px solid var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: .7;
}
.reviews-item__icon svg {
	flex: 0 0 48px;
	max-width: 48px;
	height: 48px;
}
.reviews-item__content {
	opacity: .8;
	margin-bottom: 20px;
	font-size: var(--text-size-md);
}
.reviews-item__name {
	font-size: var(--h6-size);
	font-weight: 700;
}
.reviews-section .owl-nav button {
	border-color: var(--white) !important;
}
.reviews-section .owl-nav button:hover {
	background: var(--white) !important;
}
.reviews-section .owl-nav button:before {
	background-color: var(--white);
}
.reviews-section .owl-nav button:hover:before {
	background-color: var(--black);
}
.reviews-button {
	position: relative;
	margin-top: 20px;
	z-index: 1;
}


.portfolio-section {
	background: #f5f5f5;
}
.portfolio-item {
	position: relative;
	height: calc((var(--container) - 2 * 30px) / 3);
}
.portfolio-item img {
	transition: 1s;
}
.portfolio-item a:hover img {
	transform: scale(1.05);
}


.contacts-info {
	position: relative;
	text-align: right;
	padding-right: 30px;
}
.contacts-info-label {
	font-size: var(--text-size-md);
	margin-bottom: 0;
}
.contacts-info-phone {
	font-size: var(--h1-size);
}
.contacts-info-other {
	opacity: .7;
	font-size: var(--text-size-md);
}


.feedback-form {
	max-width: 460px;
}



.page-header {
	position: relative;
	padding: 40px 0;
	background: #F5f5f5;
	text-align: center;
	z-index: 1;
}
.page-title {
	font-size: var(--h3-size);
}
.page-content {
	padding-top: 60px !important;
}

.error-404-number {
	font-size: calc(var(--h1-size) * 4);
	text-align: center;
	line-height: 1;
	font-weight: 700;
}




.header-toggle {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-toggle button {
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	-webkit-mask-image: url(images/menu.svg);
  mask-image: url(images/menu.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--black);
  border-radius: 0;
  border: none;
  padding: 0;
  outline: none !important;
  cursor: pointer;
  transition: .25s;
}
.header-toggle button:hover {
	background-color: #000000;
}


.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
  transition: .25s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .25s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
  position: relative;
  background: #fff;
  border-radius: 4px 0 0 4px;
  height: 100%;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  transform: translateX(100%);
  padding: 70px 20px 20px;
  transition: .25s;
  overflow: auto;
  z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-mask-image: url(images/cancel.svg);
  mask-image: url(images/cancel.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--black);
  width: 24px;
  height: 24px;
  border: none;
  padding: 0;
  outline: none !important;
  transition: .25s;
}
.modal-mobile-close:hover {
	background-color: #000000;
}



@media (max-width: 1399px) {
	:root {
		--container: 1116px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-md: 18px;
		--h1-size: 54px;
		--h2-size: 36px;
		--h3-size: 30px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header-logo-top {
		font-size: 20px;
	}
	.header-logo-top img {
    max-height: 52px;
  }
  .header-logo-bottom {
    margin-top: 6px;
    font-size: 16px;
	}
	.hero-wrap p {
		font-size: 18px;
	}
}



@media (max-width: 1199px) {
	:root {
		--container: 916px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-md: 18px;
		--h1-size: 54px;
		--h2-size: 36px;
		--h3-size: 30px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.section {
		padding-top: 65px;
		padding-bottom: 65px;
	}
	.section-md {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.heading {
		margin-bottom: 30px;
	}
	.about-info {
		padding-left: 10px;
	}
	.page-content {
		padding-top: 45px !important;
	}
}

@media (max-width: 991px) {
	:root {
		--container: 696px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-md: 18px;
		--h1-size: 42px;
		--h2-size: 36px;
		--h3-size: 30px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.main-menu {
		display: block;
	}
	.main-menu li {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.main-menu li:last-child {
		margin-bottom: 0;
	}
	.main-menu li a {
		font-size: var(--h6-size);
		display: block;
	}
	.header {
		position: sticky;
		top: 0;
		padding: 10px 0;
	}
	.header-logo-bottom {
		display: none;
	}
	.header-logo-top {
    font-size: 18px;
	}
	.hero-section {
		min-height: 360px;
	}
	.hero-wrap p {
    font-size: 16px;
	}
	.hero-bg:after {
		content: '';
		background: var(--white);
		opacity: .65;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
	}
	.services-items {
		margin-bottom: -30px;
	}
	.services-item {
		margin-bottom: 30px;
	}
	.services-item__info {
		font-size: var(--text-size);
	}

	.singleServices-image {
		float: none;
		margin: 0 0 30px;
	}
	
	.about-image span {
		position: relative;
		display: block;
		height: calc(var(--container) / 1.7);
	}
	.about-info {
		padding-left: calc((100vw - var(--container)) / 2);
		padding-bottom: 0 !important;
	}
	.contacts-info {
		padding: 0;
		margin-bottom: 40px;
		text-align: center;
	}
	.contacts-info-phone {
		margin-bottom: 10px;
	}
	.feedback-form {
		margin: 0 auto;
	}
}



@media (max-width: 767px) {
	:root {
		--container: 510px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-md: 18px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.topbar-contacts .schedule {
		display: none;
	}
	.hero-wrap {
		display: block;
	}
	.portfolio-item {
    height: calc((var(--container) - 30px) / 2);
	}
}




@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 40px);

		--text-size: 16px;
		--text-size-sm: 14px;
		--text-size-md: 18px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}

	.section {
    padding-top: 56px;
    padding-bottom: 56px;
	}
	.topbar-contacts p {
		margin-right: 15px;
	}
	.header-logo-top {
    font-size: 15px;
	}
	.header-logo-top img {
    max-height: 48px;
    margin-right: 10px;
	}
	.reviews-item__icon svg {
    flex: 0 0 32px;
    max-width: 32px;
    height: 32px;
	}
	.reviews-item__icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 10px;
    border: 1px solid var(--white);
  }
  .reviews-item__content {
  	margin-bottom: 10px;
  	font-size: var(--text-size);
  }
  .page-header {
  	padding: 30px 0;
  }
	
.page-title {
	font-size: var(--h4-size);
}
}

/*====== Consent Window =========*/
.consent_banner {
	width: 95%;
	max-width: 720px;
	padding: 15px 50px;
	position: fixed;
	background: #ffffff;
	top: -5000px;
	left: 50%;
	right: 0;
	z-index: 99999;
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, .2);
	transition: all 1s ease-in-out;
}

.consent_banner.active {
	top: 50%;
	
	transform: translate(-50%, -50%)
}

.consent_banner .consent_banner-body {
	padding: 15px 0;
	position: relative;
	overflow: hidden;
}

.consent_banner-preview {
	position: relative;
	left: 0;
	transition: all .5s ease-in-out;
}

.consent_banner-preview h2 {
	color: #000000;
}

.consent_banner-preview .heading-h2 {
	color: #000000;
	font-size: 1.4em;
    text-align: center;
	font-weight: 700;
}

.consent_banner .consent_banner-body.sets .consent_banner-preview {
	left: -100%;
}

.consent_banner .consent_banner-btns {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

@media (max-width: 480px) {
	.consent_banner .consent_banner-btns {
		flex-direction: column;
		align-items: flex-start;
	}
}

.consent_banner .banner-btn {
	background: #000000;
	border: 1px solid #000000;
	padding: 6px 20px;
	color: #ffffff;
	margin: 0 5px;
	transition: all .3s ease-in-out;
}

@media (max-width: 480px) {
	.consent_banner .banner-btn {
		margin-bottom: 5px;
		margin-left: 0;
	}
}

.consent_banner .banner-btn:first-child {
	margin-left: 0;
}

.consent_banner .banner-btn:last-child {
	margin-right: 0;
}

.consent_banner .banner-btn:hover {
	text-decoration: none;
	background: #ffffff;
	color: #000000;
}

.consent_banner .banner-btn-deny {
	background: #ffffff;
	color: #000000;
	margin-left: auto;
}

@media (max-width: 480px) {
	.consent_banner .banner-btn-deny {
		margin-bottom: 5px;
		margin-left: 0;
	}
}

.consent_banner .banner-btn-deny:hover {
	background: #000000;
	color: #ffffff;
}

.consent_banner .consent_banner-settings {
	width: 100%;
	height: calc(100% - 30px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	top: 15px;
	right: -100%;
	transition: all .5s ease-in-out;
}

.consent_banner .consent_banner-body.sets .consent_banner-settings {
	right: 0;
}

.consent_banner .consent_banner-settings .consent_banner-settings_block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.consent_banner .consent_banner-settings .consent_banner-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

@media (max-width: 767px) {
	.consent_banner .consent_banner-settings .consent_banner-row {
		width: 50%;
		margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	.consent_banner .consent_banner-settings .consent_banner-row {
		width: 100%;
	}
}

.consent_banner .consent_banner-settings .consent_banner-settings_btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

@media (max-width: 480px) {
	.consent_banner .consent_banner-settings .consent_banner-settings_btns {
		justify-content: space-between;
	}
}

.setting_check {
	display: none;
}

.setting_label {
	position: relative;
	cursor: pointer;
	width: 45px;
	height: 25px;
	max-width: none;
	margin-right: 5px;
	margin-bottom: 0;
	font-weight: 400;
}

.setting_label::before {
	content: '';
	width: 45px;
	height: 25px;
	border-radius: 18px;
	border:2px solid #000000;
	background-color: #ffffff;
	box-shadow: inset -1px -1px 8px 0 rgba(247, 23, 53, .2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.setting_check:checked + label::before {
	background-color: #000000;
}

.setting_label::after {
	content: '';
	width: 21px;
	height: 21px;
	border-radius: 50%;
	border:1px solid #000000;
	background: #ffffff;
	font-size: 16px;
	color: #ffffff;
	position: absolute;
	top: 2px;
	left: 1px;
	z-index: 2;
	box-shadow: inset -1px -1px 5px 1px rgba(0, 0, 0, .5);
}

.setting_check:checked + label::after {
	right: 1px;
	left: auto;
}

.setting_check:disabled:checked + label::after, .setting_check:disabled:checked + label::before {
	opacity: .5;
	cursor: not-allowed;
}

.consent-overlay {
	display: none;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, .6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99990;
}