@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
a {
	outline: 0;
	text-decoration: none;
	cursor: pointer;
	pointer-events: pointer;
	color: #ff9ae6;
}
a:hover {
	cursor: pointer;
	pointer-events: pointer;
}
body {
	font-family: "Roboto", sans-serif;
	background: linear-gradient(0.25turn, #ffe8e8, #fffafa);
	overflow-x: hidden;
	color: rgb(0, 0, 0);
}
html {
	scroll-behavior: smooth;
}
html, body {
	height: 100%;
	margin: 0;
}
body {
	display: flex;
	flex-direction: column;
}
main {
	flex: 1;
}
.pink-text {
	color: rgb(252, 102, 255) !important;
}
.orange-text {
	color: rgb(255, 157, 157) !important;
}
.light-gray {
	color: rgb(178, 178, 178) !important;
}
.dark-gray {
	color: rgb(163, 163, 163) !important;
}
.letter-spacing {
	letter-spacing: 2px;
}
.mw-50 {
	max-width: 550px;
}
.gradient-text {
	background: linear-gradient(90deg, #fd66fd, #ff7c7e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.firstSection {
	border-bottom: 1px solid #ffd4dc;
}
.customBorder {
	border-top: 1px solid #ffd4dc;
}
.pink-voucher-box {
	background: rgb(255, 218, 229) !important;
	border: 1px solid #ffb8b8;
	border-radius: 18px;
	padding: 50px 40px;
	cursor: pointer;
	transition: all 0.25s ease;
	max-width: 300px;
	margin: 0 auto;
}
.pink-voucher-box:hover {
	background: rgb(255, 208, 222) !important;
	border: 1px solid #ffb8b8;
	box-shadow: 0 0 10px rgba(255,255,255,0.08);
	transform: translateY(3px);
}
.purple-voucher-box {
	background: rgb(239, 224, 255) !important;
	border: 1px solid #b575fb;
	border-radius: 18px;
	padding: 50px 40px;
	cursor: pointer;
	transition: all 0.25s ease;
	max-width: 300px;
	margin: 0 auto;
}
.purple-voucher-box:hover {
	background: rgb(227, 202, 253) !important;
	border: 1px solid #b575fb;
	box-shadow: 0 0 10px rgba(255,255,255,0.08);
	transform: translateY(3px);
}
.yellow-voucher-box {
	background: rgb(255, 242, 224) !important;
	border: 1px solid #ffb8b8;
	border-radius: 18px;
	padding: 50px 40px;
	cursor: pointer;
	transition: all 0.25s ease;
	max-width: 300px;
	margin: 0 auto;
}
.yellow-voucher-box:hover {
	background: rgb(254, 232, 201) !important;
	border: 1px solid #ffb8b8;
	box-shadow: 0 0 10px rgba(255,255,255,0.08);
	transform: translateY(3px);
}
.gradient-line-pink {
	height: 2px;
	width: 100%;
	background: linear-gradient(to right, transparent, #ff4d4d, transparent);
	filter: blur(0.3px);
	opacity: 0.8;
}
.gradient-line-purple {
	height: 2px;
	width: 100%;
	background: linear-gradient(to right, transparent, #9c4bff, transparent);
	filter: blur(0.3px);
	opacity: 0.8;
}
.gradient-line-yellow {
	height: 2px;
	width: 100%;
	background: linear-gradient(to right, transparent, #ffb8b8, transparent);
	filter: blur(0.3px);
	opacity: 0.8;
}
.customButton {
	background: linear-gradient(to right, #ff98c5, #d508a2);
	border: none;
	border-radius: 100px;
	position: relative;
	overflow: hidden;
	transition: transform 0.12s ease, box-shadow 0.3s ease;
}
.customButton::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
	transition: left 0.6s ease;
}
.customButton:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
	background-color: rgb(162, 121, 86);
}
.customButton:hover::before {
	left: 100%;
}
.customButton:active {
	transform: translateY(0px) scale(0.97);
}
.customButton:first-child:active {
	background-color: rgb(162, 121, 86);
}
.form-control {
	background: transparent !important;
	color: #ffffff;
}
.form-control:focus {
	background: transparent !important;
	color: #ffffff;
}
.form-select {
	background: transparent !important;
	color: #ffffff;
}
.form-select option {
	color: #808080;
	background-color: rgb(255, 255, 255);
}
.form-select option:not([selected]) {
	color: rgb(0, 0, 0);
}
.select-wrapper {
	position: relative;
	display: inline-block;
}
.select-wrapper::after {
	content: "▼";
	position: absolute;
	right: 20px;
	top: 70%;
	transform: translateY(-50%);
	color: #606060;
	pointer-events: none;
	font-size: 18px;
}
.select-wrapper select {
	width: 100%;
	padding-right: 30px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent;
	border: 1px solid #ff9ae6 !important;
	padding: 13px;
}
.form-check-input:checked {
	background-color: rgb(96, 96, 96) !important;
	border: 1px solid #ff9ae6 !important;
}
.form-control[type="date"] {
	color-scheme: gray;
}
.form-check-input[type=checkbox] {
	background-color: transparent;
	border: 1px solid #ff9ae6;
}
.form-control,
.form-select {
	transition: all 0.3s ease !important;
}
.form-control:focus,
.form-select:focus {
	background-color: #ffeaf4 !important;
	border-color: #d97bb3 !important;
	box-shadow: 0 0 6px rgba(213, 8, 162, 0.4) !important;
	outline: none !important;
}
input:focus, select:focus {
	box-shadow: none !important;
}
input:not([type="checkbox"]):focus, select:focus {
	border: 1px solid #898989 !important;
}
input:not([type="checkbox"]), select {
	border-radius: 10px !important;
	border: 1px solid #ff9ae6 !important;
	color: #606060 !important;
	padding: 13px;
	background: transparent !important;
}
input::placeholder {
	color: #606060 !important;
	opacity: 1;
}
.form-check-label {
	padding-left: 2px !important;
}
.custom-select .selected::after {
	content: "▼";
	padding-left: 5px;
	font-size: 9px;
	vertical-align: middle;
}
.custom-select {
	position: relative;
	width: auto;
	cursor: pointer;
	font-size: 16px;
	border-radius: 4px;
}
.navbar-toggler:focus,
.navbar-toggler:active {
	outline: none !important;
	box-shadow: none !important;
}
.form-check {
	color: rgb(96, 96, 96) !important;
}
.footerSection {
	font-size: 13px !important;
}
.accordion-bg {
	--bs-accordion-bg: transparent;
}
.accordion-item {
	background-color: rgb(255, 253, 255) !important;
	border: 1px solid #ff9ae6 !important;
	margin-bottom: 10px;
	border-radius: 15px !important;
	color: #606060 !important;
}
.accordion-button {
	background-color: rgb(255, 253, 255) !important;
	box-shadow: none !important;
	outline: none !important;
	color: #606060 !important;
}
.accordion-button:focus {
	background-color: rgb(255, 253, 255) !important;
	box-shadow: none !important;
	outline: none !important;
	color: #606060 !important;
}
.accordion-header {
	padding: 20px 20px !important;
}
.accordion-body {
	border-top: 1px solid #ff9ae6 !important;
	padding: 20px 20px !important;
}
.list-group-item {
	border-left: 3px solid #ff9d9d !important;
	border-bottom: none !important;
	border-top: none !important;
	border-right: none !important;
	background-color: rgb(255, 253, 255) !important;
	color: #727272 !important;
	border-radius: 0 !important;
	padding: 20px !important;
	margin-bottom: 10px;
}
.list-group-item::before {
	color: rgb(255, 157, 157) !important;
	font-weight: 600;
}