.bottom-popup__btn.is-action-setting {
    display: none;
}

.bottom-popup {
	--accent: #0054aa;
}

.bottom-popup__btn.is-action-setting {
	display: none;
}

.bottom-popup label.wcc-checkbox {
	display: flex;
	position: relative;
	cursor: pointer;
	font-size: 13px;
	line-height: 140%;
	user-select: none;
	align-items: flex-start;
	margin: 0;
}

.bottom-popup label.wcc-checkbox::before {
	display: none;
}

.bottom-popup .wcc-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	display: none;
}


.bottom-popup .wcc-checkbox .wcc-checkbox__text a {
	text-decoration: underline;
	display: inline;
}

.bottom-popup .wcc-checkbox .wcc-checkbox__text {
	line-height: 140%;
	font-size: 13px;
	text-transform: none;
	font-weight: 400;
}

.bottom-popup .wcc-checkbox .wcc-checkbox__elem {
	top: 2px;
	position: relative;
	height: 22px;
	width: 22px;
	min-width: 20px;
	background-color: #fff;
	display: inline-block;
	margin-right: 10px;
	border: 1px solid #bcbcbc;
	border-radius: 4px;
}

.bottom-popup .wcc-checkbox .wcc-checkbox__elem::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 5px;
	width: 11px;
	height: 6px;
	transition: 0.25s cubic-bezier(0.08, 0.82, 0.17, 1);
	opacity: 0;
	background-size: 13px;
	background-position: center;
	background-repeat: no-repeat;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(0);
	background: transparent;
}

.bottom-popup .wcc-checkbox input:checked~.wcc-checkbox__elem {
	background-color: #0d67dd;
	border-color: #0d67dd;
	z-index: 2;
}

.bottom-popup .wcc-checkbox .wcc-checkbox__elem:hover {
	border-color: #0d67dd;

}

.bottom-popup .wcc-checkbox input:checked~.wcc-checkbox__elem:after {
	opacity: 1;
	border-radius: 0;
	transform: rotate(-45deg);

}


.bottom-popup .wcc-checkbox input:disabled~.wcc-checkbox__elem {
	opacity: 0.5;
	cursor: not-allowed;

}

.bottom-popup {
	position: fixed;
	z-index: 10000000000000;
	left: 0;
	right: 0;
	bottom: 50px;
	display: flex;
	justify-content: center;
	transition: 0.3s ease;
	display: none;
	animation: slide-up 0.3s ease forwards;
	text-align: left;
}

.bottom-popup__wrp {
	background-color: #fff;
	padding: 35px 45px;
	box-shadow: 0px 4px 41px rgba(0, 0, 0, 0.25);
	max-width: 1100px;
	display: flex;
	margin: 0 auto;
	align-items: center;
}

.bottom-popup__title {
	font-size: 24px;
	line-height: 28px;
	color: #090C15;
	margin-bottom: 15px;
	display: none;
}

.bottom-popup.open.is-setting .bottom-popup__title {
	display: block
}

.bottom-popup.open.is-setting .is-action-apply {
	display: none;
}

.bottom-popup.open.is-setting .is-action-setting {
	display: flex;
}

.bottom-popup__desc {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 150%;
	color: #111;
}

.bottom-popup__btn {
	display: flex;
	gap: 12px;
}

.bottom-popup__btn button {
	background: var(--accent);
	border: none;
	width: 100%;
	height: 46px;
	font-weight: 6000;
	font-size: 15px;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	transition: .3s ease;
	white-space: nowrap;
	padding: 0 2em;
	font-weight: 600;
    border-radius: 8px;
    margin-bottom: 0;
}

.bottom-popup__btn button:hover {
	color: #fff;
	opacity: 0.7;
}

.bottom-popup__btn .btn.btn-gray {
	background-color: #fff;
	color: var(--accent);
	border: 1px solid var(--accent);
}

.bottom-popup.open {
	transform: translateY(0);
	display: block;
}

.bottom-popup__main {
	padding-right: 35px;
    flex-grow: 1;
    width: 100%;
}

.bottom-popup__desc a {
	color: #000;

	display: inline;
}

.bottom-popup__desc a:hover {
	text-decoration: underline;
}

.bottom-popup__setting {
	display: none;
}

.bottom-popup__toggle {
	color: var(--accent);
	padding-top: 14px;
	font-weight: 600;
}

.bottom-popup__toggle span:hover {
	text-decoration: underline;
	cursor: pointer;
}

.bottom-popup__setting {
	line-height: 140%;
	color: #222;
}

.setting-cookie {
	font-size: 15px;
}

.setting-cookie__item {
	display: flex;
	border-bottom: 1px solid #ddd;
	padding-top: 16px;
	padding-bottom: 11px;
}

.setting-cookie__checkbox {
	width: 38px;
	min-width: 38px;
}

.setting-cookie {
	padding-top: 8px;
}

.setting-cookie__item:last-child {
	border: none
}

.bottom-popup__setting p {
	font-size: 15px;
}

.bottom-popup.open.is-setting>.bottom-popup__wrp {
	flex-direction: column;
	align-items: flex-start
}

.bottom-popup.open.is-setting .bottom-popup__main {
	padding-right: 0
}

.bottom-popup.open.is-setting .bottom-popup__toggle {
	display: none;
}

.bottom-popup.open.is-setting .bottom-popup__setting {
	padding-bottom: 12px;
	max-height: 60vh;
	overflow-y: auto;
	margin-bottom: 30px;
}

.bottom-popup.open.is-setting .bottom-popup__setting {
	display: block
}

.bottom-popup.open.is-setting .bottom-popup__desc,
.bottom-popup.open.is-setting .bottom-popup__title,
.bottom-popup.open.is-setting .bottom-popup__icon {
	display: none
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
		animation-timing-function: ease-in-out;
	}

	25% {
		transform: translateY(-8px);
		animation-timing-function: ease-out;
	}

	50% {
		transform: translateY(0);
		animation-timing-function: ease-in-out;
	}

	75% {
		transform: translateY(-4px);
		animation-timing-function: ease-out;
	}
}

.bottom-popup__wrp::before {
	content: '';
	width: 50px;
	height: 50px;
	display: inline-block;
	background-size: contain;
	position: absolute;
	left: -21px;
	top: -16px;
	background-repeat: no-repeat;
	animation: bounce 4s infinite;
}

.bottom-popup__wrp {
	position: relative;
	top: 0;
}

.bottom-popup__setting h3 {
	font-weight: 700;
	color: #000;
	font-size: 21px;
	margin-bottom: 21px;
	margin-top: 0;
}

.bottom-popup__setting > p {
	margin: 10px 0;
}
.bottom-popup__setting > p a {
	color: var(--accent);
}

@media screen and (max-width: 1200px) {
	.bottom-popup__wrp::before {
		left: unset;
		right: 30px;
	}
}

@media screen and (max-width: 992px) {
	.bottom-popup {
		bottom: 0;
	}

	body>jdiv {
		z-index: 1000;
		position: relative;
	}
}

@media screen and (max-width: 992px) {

	.bottom-popup__main {
		padding-right: 0;
	}

	.bottom-popup__wrp {
		flex-direction: column;
	}

	.header-phones__links {
		margin-bottom: 12px;
	}


	.bottom-popup__btn {
		padding-top: 25px;
		width: 100%;
	}

	.bottom-popup__btn .btn {
		width: 100%;
		color: #fff;
	}

	.bottom-popup.open .bottom-popup__wrp {
		border-radius: 20px 20px 0 0;
	}


}

@media screen and (max-width: 576px) {
	.bottom-popup.open .bottom-popup__wrp {
		max-height: 80vh;

		border-radius: 20px 20px 0 0;
		margin-top: 16px;
	}

	.is-setting .bottom-popup__main {
		max-height: calc(80vh - 20px);
		overflow-y: auto;
	}

    .bottom-popup__wrp {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
	.bottom-popup__wrp {
		padding: 20px 20px;
	}

	.bottom-popup__title {
		font-size: 18px;
		font-weight: 600;
	}

	.bottom-popup__desc {
		font-size: 14px;
	}

	.bottom-popup__btn button {

		font-size: 14px;

	}
}

@keyframes tilt-shaking {
	0% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(5deg);
	}

	50% {
		transform: rotate(0eg);
	}

	75% {
		transform: rotate(-5deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

.bottom-popup__setting a:hover {
	text-decoration: underline;
}

.bottom-popup__desc a {
	color: var(--accent)
}

.bottom-popup__icon {
	padding-right: 25px;
	margin-top: -3px;
	display: none;
	animation: bounce 4s infinite;
}

.bottom-popup__icon svg {
	min-width: 50px;
	width: 50px;
	height: 50px;
    fill: var(--accent);
}

.btn.btn-gray:hover {
	opacity: 0.7;
}

a[data-ch="config"] {
    cursor: pointer;
} 

.article-body ul li {
    padding-left: 1.2em;
    position: relative;
  }
  
  .article-body ul li::before{
    content: '';
    width: 5px;
    height: 5px;
    display: block;
    background: #004997;
    position: absolute;
    border-radius: 50%;
    left: 2px;
    top: 10px;
  }

@media screen and (min-width: 767px) {
	.bottom-popup__icon {
		display: block;
	}

	.bottom-popup.open.is-setting .bottom-popup__icon {
		width: 50px;
		margin-top: 0;
		margin-bottom: 13px;
	}
}

 

/* Учитываем панель администратора WordPress */
.admin-bar .bottom-popup {
    bottom: 82px;
}

@media screen and (max-width: 782px) {
    .admin-bar .bottom-popup {
        bottom: 72px;
    }
}