.redirect-banner-backdrop {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	background-color: #000000ab;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999999;
	opacity: 1;
	transition: opacity 0.3s ease-out;
}

.redirect-banner {
	background: #ffffff;
	padding: 20px;
	border-top: 1px solid #f0eeec;
	width: 90vw;
	max-width: 550px;
}

.redirect-banner .inner {
	gap: 20px;
	display: flex;
	flex-direction: column;
}

.redirect-banner .inner .title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.redirect-banner .inner .title p {
	font-family: Lora;
	font-weight: 500;
	font-size: 26px;
	line-height: 24px;
	letter-spacing: 0%;
	color: #000000;
	flex-grow: 1;
}

.redirect-banner .inner .title svg {
	width: 22px;
	height: 22px;
	cursor: pointer;
}

.redirect-banner .inner .content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.redirect-banner .inner .content p {
	font-family: Lora;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0%;
	color: #000000;
}

.redirect-banner .footer {
	display: flex;
	gap: 16px;
	margin-top: 6px;
}

.redirect-banner .inner button {
	width: 100%;
    border-radius: 2px;
    padding-top: 14px;
    padding-right: 12px;
    padding-bottom: 14px;
    padding-left: 12px;
    background: #97863f;
    font-family: Lora;
    font-weight: 500;
    font-size: 19px;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: center;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.redirect-banner .inner button.close {
    background: #000000;
}

.redirect-banner .inner button:hover {
	background: #c6bd98;
}

.redirect-banner .inner button.close:hover {
	background: #4e4e4e;
}