/* ttip */
.contents .ttip {
	position: absolute;
	top: 32px;
	left: 50%;
	display: none;
	padding: 20px;
	box-shadow: 0 2px 18px rgb(41 22 94 / 8%);
	z-index: 9999;
	width: 320px;
	visibility: hidden;
	background-color: #fff;
	text-align: center;
	box-sizing: border-box;
	transform: translate(-50%, 0);
	border-radius: 20px;
	opacity: 0;
}

.contents .ttip.on {
	display: block;
	visibility: visible;
	transition: all 0.35s;
	opacity: 1;
}

.contents .ttip b,
.contents .ttip span {
	display: block;
	width: 100%;
}

.contents .ttip b {
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	color: #000;
}

.contents .ttip span {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #959595;
}

.contents .ttip span.close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
}

.contents .ttip .close {
	display: none;
}
/* modal */
.modal.pop_point_desc .modal-body {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 45px 40px 40px;
	width: 100%;
	height: auto;
	background-color: #fff;
	font-size: 16px;
	border-radius: 20px;
}

.modal.pop_point_desc .modal-dialog,
.modal.pop_voucher_point_desc .modal-dialog {
	justify-content: center;
	max-width: 36rem;
	width: calc(100% - 40px);
}

.modal.pop_voucher_point_desc .modal-content {
	max-width: calc(100vw - 40px);
}

.modal.pop_voucher_point_desc .modal-body {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 45px 40px 40px;
	width: 100%;
	height: auto;
	background-color: #fff;
	font-size: 16px;
	word-break: keep-all;
	border-radius: 20px;
}

/* @media */
@media (max-width: 767px) {
	.contents .ttip.on {
		top: 24px;
		left: 20px;
		transform: translate(0%, 0%);
	}

	.contents .ttip .close {
		display: block;
	}
	/* modal */
	.modal-open .modal {
		overflow-y: hidden;
	}
}

@media (max-width: 480px) {
	.contents .ttip {
		left: 0;
		width: calc(100vw - 40px);
		transform: translate(0px, 15px);
	}
}
