#bquadro_cookie_panel {
    display: flex;
    justify-content: center;
}
.cookie-panel {
	color: #ffffff !important;
    display: block;
    /* background: linear-gradient(40deg, rgba(153, 153, 153, .7) 22%, rgba(153, 153, 153, .9) 100%) !important; */
    background-color: #0A0A0D !important;
    max-width: 1024px;
    left: auto;
    right: auto;
    border-radius: 10px;
    padding: 35px 100px 40px;
}
.cookie-panel p {
    text-align: left;
}
.cookie-panel a {
	color: #D9D9D9 !important;
    opacity: .7;
}
.cookie-panel a:hover {
	color: #197df6!important;
}
.cookie-panel__btn {
	color: #ffffff;
    background: var(--blue);
    padding: 5px 12px;
    border-radius: 50px;
    height: 100%;
    transition: all .3s linear;
	font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0.01em;
    text-align: center;
}
@media (max-width: 767px) {
    .cookie-panel {
        padding: 35px 10px 40px;
    }
    .cookie-panel .container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cookie-panel p {
        width: 100%;
        margin-bottom: 10px;
        font-size: 14px;
        text-align: center;
    }
    .cookie-panel__btn {
        font-size: 14px;
        font-weight: 400;
    }
}

/************************* popups *************************/
.popup {
	display: none;
	width: 840px;
}
.popup.fancybox-content {
	padding: 48px 40px 72px;
	background: #0A0A0D;
	box-shadow: 8px 8px 24px rgba(24, 57, 64, 0.16);
	border-radius: 24px;
}
.popup-title {
	font-size: 40px;
	line-height: 100%;
}
.popup-descr {
    opacity: .7;
    margin: 0 0 25px;
}
.popup-wrap {
	position: relative;
}

@media screen and (max-width: 769px) {
    .popup-title {
        font-size: 30px;
        line-height: 100%;
    }
}