.cpln-leavenotice {
	display: none;
}

.cpln-leavenotice.cpln-active {
	display: block;
}

.cpln-position {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	overflow: auto;
}

.cpln-overlay {
	background-color: rgba(60, 75, 118, 0.5);
	position: absolute;
	width: 100%;
	height: 100%;
}

.cpln-tb {
	display: table;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.cpln-td {
	display: table-cell;
	vertical-align: middle;
}

.cpln-content {
	max-width: 768px;
	margin: 0 auto;
	background-color: #fff;
	padding: 50px;
	text-align: center;
	line-height: 1.5;
	font-size: 13px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
    justify-content: space-between;
}

.cpln-content h2, .leave_title {
	font-family: 'Roboto Slab';
	margin: 0 0 1rem;
	font-size: 36px;
	line-height: 31px;
	font-weight: bold;
}

.cpln-content p {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	margin-top: 20px;
}

.cpln-content p:last-child {
	margin-bottom: 0;
}

.cpln-redirect-box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 90%;
    align-items: center;
    margin-top: 30px;
    gap: 25px;
}

.cpln-redirect-link {
	display: flex;
	color: #FFFFFF; 
	background-color: #982A33;

}

.cpln-cancel, .cpln-redirect-url {
	font-family: 'PT Sans';
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	border: 1px solid #982A33;
	padding: 10px 30px;
	color: #fff;
	text-transform: uppercase;
}

.cpln-cancel {
	color: #000000;
}

@media screen and (max-width: 520px) {
	.cpln-content {
		max-width: 400px;
	}
	.cpln-redirect-box {
		flex-direction: column;
	}
	.cpln-redirect-box__content {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 420px) {
	.cpln-content {
		max-width: 300px;
	}
}