﻿/*#region Root*/
body {
	background: url('../../images/auth/bg-image.jpg') no-repeat fixed center;
	background-size: 100vw 100vh;
	overflow: hidden;
	height: 100dvh;
	width: 100dvw;
}

#Loading {
	position: absolute;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	background: #fff;
	z-index: 100000000;
	display: flex;
	align-items: center;
	justify-content: center;
}

	#Loading > img {
		height: 150px;
	}

#AuthContainer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 30px;
	padding: 2rem;
	margin: auto;
	width: max(70vw, 600px);
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	align-items: center;
	background: white;
	max-height: 730px;
	transition: 500ms height;
	overflow: hidden;
}

input,
select {
	height: 50px;
	width: 100%;
	padding: 12px 20px;
	border-radius: 12px;
	border: 0;
	outline: 0;
	background: #0000000d;
	font-size: 16px;
	color: #0000009c;
}
/*#endregion*/

/*#region Slider*/
#Slider {
	width: 95%;
}

	#Slider > div:first-of-type {
		display: flex;
		overflow: hidden;
		border-radius: 30px;
	}

		#Slider > div:first-of-type > img {
			max-width: 100%;
		}

	#Slider > div:last-of-type {
		margin-top: 15px;
		display: flex;
		justify-content: center;
		gap: 10px;
	}

		#Slider > div:last-of-type > i {
			cursor: pointer;
			font-size: 12px;
			color: #E9E9E9;
		}

	#Slider > div > i.active {
		color: var(--dg-blue);
	}
/*#endregion Slider*/

/*#region Main*/
#Main {
	position: relative;
	width: 92%;
	margin: 0 auto;
	padding: 36px 0;
	display: flex;
	flex-direction: column;
}

	#Main > span {
		margin: 10px 0;
		text-align: center;
		font-size: 14px;
		font-weight: 600;
	}

	#Main > div:first-of-type {
		display: flex;
		flex-direction: column;
		gap: 2rem;
		padding: 0 15px;
		text-align: center;
	}

		#Main > div:first-of-type > button {
			padding: 12px;
		}

	#Main > img {
		margin: 0 0 4rem 0;
		height: 100px;
		object-fit: contain;
	}
/*#endregion Main*/

/*#region Form*/
#Form {
	display: none;
}

	#Form > form {
		display: flex;
		gap: 0.8rem;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

		#Form > form a,
		#Form > form span {
			color: var(--dg-blue);
			cursor: pointer;
		}

		#Form > form > p {
			text-align: center;
			color: var(--dg-text-gray);
			margin: 0 0 20px 0;
		}

			#Form > form > p:first-of-type > b,
			#Form > form > p:nth-last-of-type(2) > b {
				cursor: pointer;
				padding: 0 0 1px 0;
				border-bottom: 1px solid var(--dg-blue);
				color: var(--dg-blue);
				font-weight: 400;
			}

			#Form > form > p:first-of-type {
				margin: 15px 0 6px 0;
			}

	#Form > .Back {
		position: absolute;
		left: 18px;
		top: 51px;
		color: var(--dg-blue);
		border: 2px solid var(--dg-blue);
		border-radius: 50%;
		background: #fff;
		cursor: pointer;
	}

		#Form > .Back > i {
			color: var(--dg-blue);
			font-size: 20px;
			padding: 6px 10px;
		}

	#Form > form > img {
		height: 65px;
		margin: 0 0 28px 0;
	}

	#Form > form > h1 {
		color: var(--dg-blue);
		font-size: 35px;
		margin: 0 0 8px 0;
	}

	#Form > form > div {
		position: relative;
	}

		#Form > form > div > i {
			position: absolute;
			top: 16px;
			right: 15px;
			color: var(--dg-text-gray);
			cursor: pointer;
		}

	#Form > form > div {
		position: relative;
		width: 100%;
		margin: 15px 0 0 0;
		text-align: center;
	}

		#Form > form > div > b {
			position: relative;
			z-index: 2;
			color: var(--dg-text-gray);
			background: white;
			text-align: center;
			font-weight: 500;
			padding: 0 10px;
		}

		#Form > form > div > span {
			position: absolute;
			top: 50%;
			display: block;
			width: 100%;
			border-bottom: 1px solid var(--dg-text-gray)
		}

/*#endregion Form*/

/*#region Contracts*/
#Contracts {
	position: absolute;
	left: 0;
	bottom: 0;
	background: #fff;
	width: 100%;
	height: 100%;
	padding: 40px;
	z-index: 99;
	display: none;
}

	#Contracts > i {
		position: absolute;
		right: 19px;
		top: 15px;
		font-size: 20px;
		color: var(--dg-btn-red);
		padding: 5px;
		cursor: pointer;
	}
/*#endregion Contracts*/

/*#region ResetPassword*/
#ResetPassword {
	position: relative;
	text-align: center;
	display: none;
}

	#ResetPassword > button.Back {
		outline: none;
		position: absolute;
		left: 0;
		top: -76px;
		cursor: pointer;
		background: transparent;
		border-radius: 50%;
		border: 2px solid var(--dg-blue);
	}

		#ResetPassword > button.Back > i {
			color: var(--dg-blue);
			font-size: 20px;
			padding: 6px 10px;
		}

	#ResetPassword > h3 {
		color: var(--dg-blue);
		font-size: 30px;
		text-align: center;
		margin: 10px 0 20px 0;
	}

	#ResetPassword > p {
		color: var(--dg-text-gray);
		text-align: center;
		margin: 0 0 15px 0;
	}

	#ResetPassword > button {
		margin: 15px 0 0 0;
	}
/*#endregion */

#Registration {
	position: fixed;
	overflow: auto;
	background: #fff;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 2rem;
	transition: 500ms height;
	display: none;
}
/*#region Page1*/
#Page1 {
	position: relative;
	display: none;
	margin: auto;
	flex-direction: column;
}

	#Page1 > p {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

		#Page1 > p > b {
			font-size: 20px;
			font-weight: 500;
		}

	#Page1 > div {
		margin-top: 10px;
		position: relative;
		padding: 40px;
		border-radius: 30px;
		width: 380px;
		display: flex;
		flex-direction: column;
		gap: 10px;
		box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
	}

		#Page1 > div > div {
			display: flex;
			gap: 10px;
			margin-top: 15px;
		}

		#Page1 > div > h5 {
			text-align: center;
			border-bottom: solid 1px;
			color: #3880FF;
			font-size: 21px;
			font-weight: 400;
			width: 200px;
			margin: auto;
			padding-bottom: 5px;
		}

		#Page1 > div > label {
			font-size: 12px;
			font-weight: 600;
		}

		#Page1 > div > div > label {
			font-size: 12px;
			font-weight: 600;
		}

		#Page1 > div > p {
			font-size: 10px;
			margin: 5px 0px 30px 0px;
		}

			#Page1 > div > p > b {
				color: #676666;
			}

		#Page1 > div > button {
			border-radius: 30px;
			box-shadow: none;
			background: #3273e6;
			width: 130px;
			margin: auto;
		}

#PasswordControlBox {
	user-select: none;
	display: none;
	flex-direction: column;
	gap: 1rem;
	position: absolute;
	background: #f2f2f2;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
	padding: 10px;
	border-radius: 10px;
}

input[type="password"]:focus + i + #PasswordControlBox {
	display: flex;
}

#PasswordControlBox > p {
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 15px;
}

	#PasswordControlBox > p > i.fa-ban {
		color: red;
		font-size: 14px;
	}

	#PasswordControlBox > p > i.fa-check {
		color: green;
		font-size: 14px;
	}



#Page1 > div,
#Page2 > div,
#Page3 > div,
#PaymentType > div {
	position: relative;
}

	#Page1 > div > i {
		position: absolute;
		color: var(--dg-text-gray);
		cursor: pointer;
	}

	#PaymentType > div > i {
		position: absolute;
		color: var(--dg-text-gray);
		cursor: pointer;
	}

#Page1 > input,
#Page1 > select {
	grid-column: 1/3;
}

	#Page1 > input:nth-of-type(1) {
		grid-column: 1/2;
		grid-row: 2;
	}

	#Page1 > input:nth-of-type(2) {
		grid-column: 2/3;
		grid-row: 2;
	}

#Page1 > i,
#Page2 > i,
#Page3 > i {
	left: 0px;
	position: absolute;
	top: 59px;
	cursor: pointer;
	z-index: 999;
}

#PaymentType > div > i {
	left: 10px;
	position: absolute;
	top: 10px;
	cursor: pointer;
	z-index: 999;
}

	#Page1 > div > i::before,
	#Page2 > i::before,
	#Page3 > i::before,
	#TransferPayment > i::before,
	#PaymentType > div > i::before {
		position: absolute;
		height: 24px;
		width: 25px;
		color: var(--dg-btn-blue);
		font-size: 18px;
		border-radius: 50%;
		border: 2px solid var(--dg-btn-blue);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 3px;
		cursor: pointer;
	}

#Page1 > h5 {
	text-align: center;
}

/*#endregion */

#Page1 > div > button,
#Page2 > button,
#Page3 > button {
	height: 45px;
}

/*#region PaymentType*/
#PaymentType {
	max-width: 380px;
	display: none;
	flex-direction: column;
	align-items: center;
	margin: auto;
	gap: 10px;
}

	#PaymentType > h4 {
		font-size: 25px;
		font-weight: 400;
	}

	#PaymentType > div {
		margin: auto;
		padding: 40px;
		border-radius: 30px;
		display: flex;
		flex-direction: column;
		gap: 10px;
		box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
		align-items: center;
	}

		#PaymentType > div > button > img {
			filter: brightness(0) invert(1);
			height: 35px;
		}

		#PaymentType > div > button:first-of-type {
			color: #fff;
			background: #315ef7;
			border: 0;
			border-radius: 5px;
			font-size: 15px;
			transition: 300ms;
			cursor: pointer;
			width: 100%;
			margin-top: 10px;
			padding: 20px;
			align-items: center;
			display: flex;
			gap: 10px;
		}

		#PaymentType > div > button:nth-of-type(2) {
			color: #fff;
			background: #fd7802;
			border: 0;
			border-radius: 5px;
			font-size: 15px;
			transition: 300ms;
			cursor: pointer;
			width: 100%;
			margin-top: 10px;
			padding: 20px;
			align-items: center;
			display: flex;
			gap: 10px;
		}
/*#endregion PaymentType*/

/*#region TransferPayment*/
#TransferPayment {
	position: relative;
	display: none;
	flex-direction: column;
	gap: 10px;
	margin: auto;
	background-color: #ececec;
	max-width: 350px;
	border-radius: 50px;
	border-top-left-radius: 0;
	padding: 10px;
	height: 489px;
	justify-content: center;
}

	#TransferPayment > div {
		display: flex;
		flex-direction: column;
		gap: 15px;
		text-align: center;
		font-size: 15px;
	}

		#TransferPayment > div > h1 {
			color: #525252;
		}

	#TransferPayment > i {
		left: 16px;
		position: absolute;
		top: 20px;
		cursor: pointer;
		z-index: 999;
	}

	#TransferPayment > div > button {
		background: #3734a5;
		border-radius: 15px;
		border-top-left-radius: 0;
		color: #fff;
		outline: none;
		border: none;
		width: 150px;
		font-size: 16px;
		height: 33px;
		cursor: pointer;
		margin: auto;
		display: block;
		text-align: center;
	}

	#TransferPayment > div > span {
		color: #525252;
		font-size: 20px;
		font-weight: 600;
	}

	#TransferPayment > div > p {
		color: #4b4b4b;
	}
/*#endregion TransferPayment*/

/*#region Card */
#Page3 {
	position: relative;
	display: none;
	flex-direction: column;
	margin: auto;
}

	#Page3 > div {
		display: flex;
		flex-direction: column;
		border-radius: 40px 0px 40px 0px;
		max-width: 400px;
		padding: 10px;
		font-size: 13px;
		font-weight: 600;
		gap: 7px;
		background-color: #ececec;
	}

		#Page3 > div > div:first-of-type {
			background: #5734a6;
			width: 100%;
			height: 140px;
			position: absolute;
			left: 0px;
			top: 0px;
			border-radius: 30px 0px 70px 0px;
		}

#Card {
	position: relative;
	width: 100%;
	max-width: 400px;
	height: 188px;
	perspective: 2000px;
}

#Card-inner {
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	position: relative;
	border: 2px solid rgb(0 0 0 / 10%);
}

	#Card-inner.active {
		transform: rotateY(-180deg);
	}

/*#endregion */

/*#region Front */
#Front, #Back {
	padding: 15px;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 10px;
	transition: 500ms;
}

	#Front::before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		width: 100%;
		height: 65px;
		background: #fff;
		transform: translateY(-55%);
		transition: 500ms;
		background: #b9b9b9;
	}

#Front {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform: rotateY(0deg);
	z-index: 2;
}

	#Front > div:first-of-type {
		display: flex;
		justify-content: space-between;
	}

		#Front > div:first-of-type > img {
			width: 68px;
			object-fit: contain;
			height: 23px;
		}

	#Front > p {
		position: absolute;
		text-align: center;
		font-size: 20px;
		color: #fff;
		font-weight: 300;
		display: flex;
		justify-content: center;
		gap: 2px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		padding: 1px 5px;
		border: 2px solid transparent;
		transition: 300ms;
	}

		#Front > p > span:nth-of-type(4),
		#Front > p > span:nth-of-type(8),
		#Front > p > span:nth-of-type(12) {
			margin-right: 7px;
		}

		#Front > p > span {
			width: 13px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

	#Front > div:last-of-type {
		display: flex;
		justify-content: space-between;
		gap: 1rem;
	}

		#Front > div:last-of-type > p:first-of-type {
			display: flex;
			flex-direction: column;
			width: 163px;
		}

			#Front > div:last-of-type > p:first-of-type > b {
				padding-left: 7px;
				font-size: 10px;
				color: #868686;
				font-weight: 400;
			}

			#Front > div:last-of-type > p:first-of-type > span {
				font-size: 12px;
				white-space: nowrap;
				color: #000;
				overflow: hidden;
				padding: 1px 5px;
				border: 2px solid #fff;
				transition: 300ms;
			}

		#Front > div:last-of-type > div {
			display: flex;
			flex-direction: column;
			width: 75px;
			align-items: end;
		}

			#Front > div:last-of-type > div > b {
				font-size: 10px;
				color: #868686;
				font-weight: 400;
				padding-left: 7px;
			}

			#Front > div:last-of-type > div > p {
				white-space: nowrap;
			}

				#Front > div:last-of-type > div > p > * {
					font-size: 12px;
					color: #000;
				}

				#Front > div:last-of-type > div > p > span {
					padding: 1px 5px;
					border: 2px solid #fff;
					transition: 300ms;
				}

				#Front > div:last-of-type > div > p > b {
					font-weight: 400;
				}

/*#endregion  */

/*#region Back */

#Back {
	transform: rotateY(180deg);
}


#Card > div {
	border-radius: 30px;
	padding: 25px 15px;
	user-select: none;
	transition: 1s;
	background: #fff;
}

#Back {
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: end;
	gap: 1rem;
	transform: rotateY(180deg);
}

	#Back > p {
		position: absolute;
		top: 18px;
		left: 0;
		background: rgba(0, 0, 19, 0.8);
		width: 100%;
		height: 50px;
	}

	#Back > div {
		text-align: end;
		width: 100%;
		font-size: 10px;
		color: #000;
	}

		#Back > div > p {
			height: 30px;
			width: 100%;
			background: #b9b9b9;
			border-radius: 5px;
			color: #fff;
			font-size: 12px;
			display: flex;
			align-items: center;
			justify-content: end;
			padding-right: 10px;
		}

	#Back > img {
		height: 35px;
		opacity: 0.7;
	}

/*#endregion  */

/*#region CardForm */
#CardForm {
	color: #525252;
	display: flex;
	flex-direction: column;
	gap: 17px;
}

	#CardForm label {
		font-size: 12px;
	}

	#CardForm > div input, select {
		height: 30px;
		width: 100%;
		padding: 6px 10px;
		border-radius: 12px;
		border: 0;
		outline: 0;
		background: #0000000d;
		font-size: 13px;
		color: #0000009c;
	}

	#CardForm > button {
		background: #3734a5;
		border-radius: 15px;
		border-top-left-radius: 0;
		color: #fff;
		outline: none;
		border: none;
		width: 150px;
		font-size: 16px;
		height: 33px;
		cursor: pointer;
		margin: auto;
		display: block;
		text-align: center;
	}

	#CardForm > div:first-of-type > div {
		display: flex;
		justify-content: space-between;
	}


		#CardForm > div:first-of-type > div > div {
			display: flex;
			align-items: end;
			gap: 5px;
		}

		#CardForm > div:first-of-type > div > label {
			width: 20%;
		}

	#CardForm > div:nth-of-type(2) > div:first-of-type {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

		#CardForm > div:nth-of-type(2) > div:first-of-type > p {
			font-size: 12px;
			width: 50%;
		}

		#CardForm > div:nth-of-type(2) > div:first-of-type > select {
			width: 30%;
		}

	#CardForm > div:last-of-type > div:last-of-type {
		display: none;
		margin-top: 10px;
		gap: 1rem;
	}

		#CardForm > div:last-of-type > div:last-of-type > p {
			width: 33.33%;
			font-size: 12px;
			color: #525252;
			display: flex;
			flex-direction: column;
			user-select: none;
		}

			#CardForm > div:last-of-type > div:last-of-type > p > span {
				height: 27px;
				border-radius: 12px;
				background: #0000000d;
				font-size: 13px;
				color: #525252;
				white-space: nowrap;
				display: flex;
				align-items: center;
				padding-left: 8px;
				font-weight: 400;
			}
/*#endregion */

/*#region Card Sıfırlama*/
.Bkm,
.Axess,
.Ing,
.Paytr,
.Ziraat,
.HalkBank,
.Ptt,
.Maximum,
.Garanti,
.Akbank,
.Albaraka,
.Alternatif,
.Anadolu,
.Deniz,
.EmlakKatilim,
.FibaBank,
.Kuveyt,
.Qnb,
.OdeaBank,
.Seker,
.Teb,
.TrFinans,
.TrIsBanaksi,
.VakifBank,
.YapiKredi {
	display: none;
}

	/*#endregion */

	/*#region Ziraat */
	.ziraat #Front::before {
		background: #e62621;
	}

	.ziraat img {
		display: none;
	}

	.ziraat .Ziraat {
		display: flex !important;
	}
	/*#endregion */
	/*#region Garanti*/
	.garanti #Front::before {
		background: #75c14d;
	}

	.garanti img {
		display: none;
	}

	.garanti .Garanti {
		display: flex !important;
	}
	/*#endregion */
	/*#region Maximum*/
	.maximum #Front::before {
		background: #e9028c;
	}

	.maximum img {
		display: none;
	}

	.maximum .Maximum {
		display: flex !important;
	}
	/*#endregion */
	/*#region Axess*/
	.axess #Front::before {
		background: #ffc20e;
	}

	.axess img {
		display: none;
	}

	.axess .Axess {
		display: flex !important;
	}
	/*#endregion */
	/*#region ing*/
	.ing #Front::before {
		background: #e2661a;
	}

	.ing img {
		display: none;
	}

	.ing .Ing {
		display: flex !important;
	}
	/*#endregion */
	/*#region Paytr*/
	.paytr #Front::before {
		background: #2380c5;
	}

	.paytr img {
		display: none;
	}

	.paytr .Paytr {
		display: flex !important;
	}
	/*#endregion */
	/*#region HalkBank */
	.halkbank #Front::before {
		background: #1d5387;
	}

	.halkbank img {
		display: none;
	}

	.halkbank .HalkBank {
		display: flex !important;
	}
	/*#endregion */
	/*#region Bkm*/
	.bkm #Front::before {
		background: #00a99d;
	}

	.bkm img {
		display: none;
	}

	.bkm .Bkm {
		display: flex !important;
	}
/*#endregion */
/*#region Yapı Kredi*/
.yapı #Front::before {
	background: #053056;
}

.yapı img {
	display: none;
}

.yapı .YapiKredi {
	display: flex !important;
}
/*#endregion */
/*#region Tr Finans*/
.finans #Front::before {
	background: #00c3b3;
}

.finans img {
	display: none;
}

.finans .TrFinans {
	display: flex !important;
}
/*#endregion */
/*#region Vakıf Katılım*/
.katılım #Front::before {
	background: #1d5193;
}

.katılım img {
	display: none;
}

.katılım .VakifKatilim {
	display: flex !important;
}
/*#endregion */
/*#region Ptt*/
.ptt #Front::before {
	background: #22b3d5;
}

.ptt img {
	display: none;
}

.ptt .Ptt {
	display: flex !important;
}
/*#endregion */
/*#region Türkiye İş Bankası*/
.i̇ş #Front::before {
	background: #00559f;
}

.i̇ş img {
	display: none;
}

.i̇ş .TrIsBanaksi {
	display: flex !important;
}
/*#endregion */
/*#region Vakıfbank*/
.vakıfbank #Front::before {
	background: #fbba00;
}

.vakıfbank img {
	display: none;
}

.vakıfbank .VakifBank {
	display: flex !important;
}
/*#endregion */
/*#region QNB Finansbank*/
.finansbank #Front::before {
	background: #293867;
}

.finansbank img {
	display: none;
}

.finansbank .Qnb {
	display: flex !important;
}
/*#endregion */
/*#region Akbank*/
.akbank #Front::before {
	background: #df392e;
}

.akbank img {
	display: none;
}

.akbank .Akbank {
	display: flex !important;
}
/*#endregion */
/*#region Deniz Bank*/
.denizbank #Front::before {
	background: #004c91;
}

.denizbank img {
	display: none;
}

.denizbank .Deniz {
	display: flex !important;
}
/*#endregion */
/*#region Teb*/
.ekonomi #Front::before {
	background: #0a8a5a;
}

.ekonomi img {
	display: none;
}

.ekonomi .Teb {
	display: flex !important;
}
/*#endregion */
/*#region Kuveyt*/
.kuveyt #Front::before {
	background: #087456;
}

.kuveyt img {
	display: none;
}

.kuveyt .Kuveyt {
	display: flex !important;
}
/*#endregion */
/*#region Emlak Katılım*/
.emlak #Front::before {
	background: #157c3c;
}

.emlak img {
	display: none;
}

.emlak .EmlakKatilim {
	display: flex !important;
}
/*#endregion */
/*#region Anadolu*/
.anadolu #Front::before {
	background: #161420;
}

.anadolu img {
	display: none;
}

.anadolu .Anadolu {
	display: flex !important;
}
/*#endregion */
/*#region Alternatif*/
.alternatif #Front::before {
	background: #a90a44;
}

.alternatif img {
	display: none;
}

.alternatif .Alternatif {
	display: flex !important;
}
/*#endregion */
/*#region Albaraka*/
.albaraka #Front::before {
	background: #f37228;
}

.albaraka img {
	display: none;
}

.albaraka .Albaraka {
	display: flex !important;
}
/*#endregion */
/*#region Fibabank*/
.fibabank #Front::before {
	background: #0c5bbb;
}

.fibabank img {
	display: none;
}

.fibabank .FibaBank {
	display: flex !important;
}
/*#endregion */
/*#region OdeaBank*/
.odeabank #Front::before {
	background: #080808;
}

.odeabank img {
	display: none;
}

.odeabank .FibaBank {
	display: flex !important;
}
/*#endregion */
/*#region ŞekerBank*/
.sekerbank #Front::before {
	background: #0e7d3c;
}

.sekerbank img {
	display: none;
}

.sekerbank .Seker {
	display: flex !important;
}
/*#endregion */

.border {
	border: 2px solid rgb(0 0 0 / 10%) !important;
	border-radius: 5px;
}

/*#region Page2 Paket kısmı va satın alma*/
#Page2 {
	display: none;
}

#ResponsiveBasketBtn {
	position: absolute;
	right: 22px;
	top: 10px;
	background: #f9bd03;
	color: #fff;
	display: flex;
	align-items: center;
	border-radius: 15px;
	border-top-left-radius: 0;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	width: 130px;
	font-size: 14px;
	height: 30px;
	display: none;
}

	#ResponsiveBasketBtn > i {
		color: #fff;
	}

#PackageContainer {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 1rem;
}

#Content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

#PackageNavbar {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
}

	#PackageNavbar > h1 {
		color: #525252;
		font-size: 28px;
		line-height: 0.7;
	}

	#PackageNavbar > p {
		color: #525252;
		font-size: 17px;
	}

	#PackageNavbar > div {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
	}

		#PackageNavbar > div > :is(span, b) {
			color: #fff;
			background: #b3b0ee;
			padding: 7px 20px;
			border-radius: 15px;
			cursor: pointer;
		}

		#PackageNavbar > div > span.active {
			background: #3734a5;
			border-top-left-radius: 0;
		}

#ResponsivePackageNavbar > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130px;
}

#PackageNavbar > div > span[data-id='14'],
#PackageNavbar > div > span[data-id='12'],
#PackageNavbar > div > span[data-id='11'],
#PackageNavbar > div > span[data-id='10'],
#PackageNavbar > div > span[data-id='7'],
#PackageNavbar > div > b,
#PackageNavbar > div > span[data-id='9'] {
	display: none;
}

#Content > div:not(#PackageNavbar) {
	display: flex;
	gap: 1rem;
	/*display: none;*/
}

	#Content > div:not(#PackageNavbar)[data-id='1'] {
		display: flex;
	}

.package1 {
	width: 67%;
	display: flex;
	border-radius: 85px;
	border-top-left-radius: 0;
}

.mainPackage {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid #00000069;
	padding: 10px;
	width: 50%;
	border-bottom-left-radius: 50px;
}

	.mainPackage > h3 {
		color: #5634a5cf;
		font-size: 23px;
		width: 100%;
	}

	.mainPackage > p:first-of-type {
		font-size: 13px;
		color: #a1a1a1;
	}

		.mainPackage > p:first-of-type > span {
			color: #f9bd03;
			font-weight: 600;
		}

	.mainPackage > p:last-of-type {
		display: flex;
		gap: 1rem;
		margin: 12px 0px 7px 0;
	}

		.mainPackage > p:last-of-type > span {
			color: #525252;
			font-size: 17px;
			padding: 0px;
			cursor: pointer;
		}

			.mainPackage > p:last-of-type > span.active {
				border-bottom: 2px solid #f9bd03;
				font-weight: 500;
			}

	.mainPackage > div > div {
		display: flex;
		flex-direction: column;
		gap: 6px;
	}

		.mainPackage > div > div > p {
			color: #525252;
			font-size: 15px;
			position: relative;
			padding-left: 26px;
		}

			.mainPackage > div > div > p::before {
				position: absolute;
				content: "✓";
				height: 18px;
				width: 18px;
				left: 0;
				top: 4px;
				background: #f9bd03;
				border-radius: 50%;
				color: #fff;
				display: flex;
				align-items: center;
				justify-content: center;
			}

		.mainPackage > div > div:last-of-type {
			display: none;
		}

	.mainPackage > div:last-of-type {
		display: flex;
		justify-content: center;
		gap: 1rem;
		align-items: center;
		color: #f9bd03;
		font-weight: 600;
		font-size: 20px;
		margin-top: 20px;
	}

		.mainPackage > div:last-of-type > button {
			background: #3734a5;
			border-radius: 15px;
			border-top-left-radius: 0;
			color: #fff;
			outline: none;
			border: none;
			width: 150px;
			font-size: 16px;
			height: 33px;
			cursor: pointer;
		}

.features {
	padding: 10px;
	background: #5634a5;
	width: 50%;
	border-radius: 50px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

	.features > h3 {
		color: #f9bd03;
		font-size: 23px;
	}

		.features > h3 > span {
			display: block;
			color: #ffffffc2;
			font-size: 11px;
			font-weight: 300;
		}

	.features > div {
		display: flex;
		flex-direction: column;
		gap: 5px;
	}

		.features > div > label {
			position: relative;
			color: #fff;
			display: flex;
			align-items: center;
			font-size: 15px;
			cursor: pointer;
			padding: 10px 52px 5px 24px;
		}

			.features > div > label::before {
				content: "";
				position: absolute;
				width: 95%;
				height: 1px;
				background: #fff;
				right: 0;
				bottom: 0px;
			}

			.features > div > label > input {
				position: relative;
				width: 0;
				height: 0;
			}

				.features > div > label > input:before {
					content: "";
					position: absolute;
					height: 18px;
					width: 18px;
					left: -26px;
					top: -9px;
					background: transparent;
					border-radius: 50%;
					color: #fff;
					display: flex;
					align-items: center;
					justify-content: center;
					border: 1px solid #fff;
				}

				.features > div > label > input:checked::before {
					content: "✓";
					background: #f9bd03;
					color: #fff;
					border-color: #f9bd03;
				}

			.features > div > label > b {
				position: absolute;
				right: 0;
				font-weight: 500;
				color: #f9bd03;
				font-size: 19px;
			}

.package2 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 32%;
	background: #ececec;
	border: 1px solid #00000069;
	padding: 10px 10px 10px 18px;
	border-radius: 50px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
}

	.package2 > h3 {
		color: #5634a5cf;
		font-size: 23px;
		width: 100;
	}

	.package2 > p:first-of-type {
		font-size: 13px;
		color: #a1a1a1;
	}

		.package2 > p:first-of-type > span {
			color: #f9bd03;
		}

	.package2 > p:last-of-type {
		display: flex;
		gap: 1rem;
		margin: 12px 0px 7px 0;
	}

		.package2 > p:last-of-type > span {
			color: #525252;
			font-size: 17px;
			padding: 0px;
			cursor: pointer;
		}

			.package2 > p:last-of-type > span.active {
				border-bottom: 2px solid #f9bd03;
				font-weight: 500;
			}

	.package2 > div > div {
		display: flex;
		flex-direction: column;
		gap: 6px;
	}

		.package2 > div > div > p {
			color: #525252;
			font-size: 15px;
			position: relative;
			padding-left: 26px;
		}

			.package2 > div > div > p::before {
				position: absolute;
				content: "✓";
				height: 18px;
				width: 18px;
				left: 0;
				top: 4px;
				background: #f9bd03;
				border-radius: 50%;
				color: #fff;
				display: flex;
				align-items: center;
				justify-content: center;
			}

		.package2 > div > div:last-of-type {
			display: none;
		}

	.package2 > div:last-of-type {
		display: flex;
		justify-content: center;
		gap: 1rem;
		align-items: center;
		color: #3734a5;
		font-weight: 600;
		font-size: 20px;
		margin-top: 20px;
	}

		.package2 > div:last-of-type > button {
			background: #f9bd03;
			border-radius: 15px;
			border-top-left-radius: 0;
			color: #fff;
			outline: none;
			border: none;
			width: 150px;
			font-size: 16px;
			height: 33px;
			cursor: pointer;
		}

#Basket {
	padding: 1rem;
	margin-top: 56px;
}

	#Basket > div:first-of-type {
		background: #ececec;
		border-radius: 50px;
		padding-bottom: 17px;
	}

		#Basket > div:first-of-type > * {
			padding: 5px 10px;
			position: relative;
		}

		#Basket > div:first-of-type > div:first-of-type {
			padding-top: 14px;
			background: #5634a5;
			border-top-right-radius: 50px;
		}

			#Basket > div:first-of-type > div:first-of-type > h3 {
				color: #fff;
				font-weight: 500;
				font-size: 20px;
			}

			#Basket > div:first-of-type > div:first-of-type > p {
				display: flex;
				flex-direction: column;
				font-size: 14px;
				color: #ffffffd6;
				line-height: 22px;
			}

		#Basket > div:first-of-type > h3 {
			color: #525252;
			font-size: 14px;
			line-height: 21px;
			font-weight: 500;
			margin-top: 5px;
			margin-bottom: 5px;
		}

			#Basket > div:first-of-type > h3 > span {
				font-weight: 700;
			}

		#Basket > div:first-of-type > img {
			width: 100%;
			height: 140px;
			object-fit: cover;
			border-radius: 33px;
		}

		#Basket > div:first-of-type > p {
			color: #5634a5;
			font-size: 16px;
			font-weight: 500;
		}

		#Basket > div:first-of-type > div:last-of-type > button {
			width: 100%;
			height: 40px;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			height: 40px;
			font-size: 15px;
			font-weight: 500;
			color: #525252;
			background: #fff;
			border: 0;
			margin: auto;
			border-radius: 6px;
			border-bottom-left-radius: 25px;
			gap: 9px;
		}

			#Basket > div:first-of-type > div:last-of-type > button > i {
				color: #f9bd03;
			}

		#Basket > div:first-of-type > div:last-of-type > input {
			display: none;
			width: 100%;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			height: 40px;
			font-size: 13px;
			font-weight: 500;
			color: #525252;
			background: #fff;
			border: 0;
			margin: auto;
			border-radius: 6px;
			border-bottom-left-radius: 25px;
			gap: 9px;
			text-align: start;
		}

		#Basket > div:first-of-type > div:last-of-type > span {
			display: none;
			position: absolute;
			right: 16px;
			top: 10px;
			background: #f9bd03;
			color: #fff;
			outline: none;
			border: none;
			font-size: 13px;
			height: 30px;
			cursor: pointer;
			text-align: center;
			justify-content: center;
			align-items: center;
			width: 66px;
			border-radius: 6px;
			border-bottom-left-radius: 14px;
		}

		#Basket > div:first-of-type > label {
			display: flex;
			gap: 5px;
		}

			#Basket > div:first-of-type > label > input {
				min-width: 15px;
				min-height: 15px;
				max-width: 15px;
				max-height: 15px;
				position: relative;
				top: 4px;
			}

			#Basket > div:first-of-type > label > p {
				color: #525252;
				font-size: 12px;
				font-weight: 400;
			}

				#Basket > div:first-of-type > label > p > span {
					color: #f9bd03;
					font-weight: 500;
				}

		#Basket > div:first-of-type > span {
			background: #f9bd03;
			border-radius: 15px;
			border-top-left-radius: 0;
			color: #fff;
			outline: none;
			border: none;
			width: max-content;
			font-size: 16px;
			height: 33px;
			cursor: pointer;
			margin: auto;
			display: block;
			text-align: center;
		}


	#Basket > div:nth-of-type(2) {
		position: relative;
		height: 489px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		background: #ececec;
		border-radius: 50px;
		border-top-left-radius: 0;
		padding: 10px;
	}

		#Basket > div:nth-of-type(2) > img,
		#Page3 > img,
		#TransferPayment > img {
			width: 28px;
			position: absolute;
			top: -4px;
			right: -2px;
			z-index: 3;
			padding: 5px;
			cursor: pointer;
			filter: invert(61%) sepia(98%) saturate(776%) hue-rotate(3deg) brightness(108%) contrast(98%);
		}

		#Basket > div:nth-of-type(2) > button {
			width: 100%;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			height: 60px;
			gap: 10px;
			border: 0;
			background: #5634a5;
			border-radius: 17px;
			border-top-left-radius: 0;
			color: #fff;
			font-size: 14px;
		}

			#Basket > div:nth-of-type(2) > button:first-of-type {
				background: #8261d0;
			}

			#Basket > div:nth-of-type(2) > button > img {
				width: 32px;
				filter: invert(1);
			}

#PackageNavbar > div.select {
	width: 135px;
	position: relative;
	display: none;
}

.custom-select {
	width: 100%;
	padding: 6px 16px;
	border: 2px solid #D0D0D0;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all .3s ease;
	grid-gap: 10px;
	color: #3734a5;
}

	.custom-select * {
		pointer-events: none;
	}

.select.show .custom-select {
	background: #f3f3f3;
}

.custom-select span {
	display: block;
}

.custom-select .label {
	font-size: 12px;
	font-weight: 600;
	color: var(--grey);
}

.custom-select .value {
	display: flex;
	align-items: center;
	grid-gap: 10px;
}

.custom-select i {
	transition: all .3s ease;
	font-size: 12px;
	color: #5634a5;
}

.select.show .custom-select i {
	transform: rotate(180deg);
}

.option {
	position: absolute;
	top: calc(100% + 10px);
	max-height: 0;
	overflow-y: hidden;
	width: 100%;
	transition: all .3s;
	z-index: 500;
}

.select.show .option {
	max-height: 260px;
}

.custom-option {
	border-radius: 10px;
	border: 2px solid #D0D0D0;
	background: #fff;
	padding: 10px 0;
	width: 100%;
	max-height: 260px;
	overflow-y: auto;
	scrollbar-width: none;
}

	.custom-option::-webkit-scrollbar {
		display: none;
	}

	.custom-option li {
		padding: 10px 10px 10px 24px;
		display: flex;
		align-items: center;
		grid-gap: 10px;
		transition: all .3s ease;
		cursor: pointer;
	}

		.custom-option li:hover {
			background: var(--light-grey);
			color: var(--purple);
		}

		.custom-option li.active {
			color: #3734a5;
		}

.addToBasket {
	display: none;
	justify-content: center;
	gap: 1rem;
	align-items: center;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	margin-top: 20px;
}

	.addToBasket > span {
		background: #f9bd03;
		border-radius: 15px;
		border-top-left-radius: 0;
		color: #fff;
		outline: none;
		border: none;
		cursor: pointer;
		width: 130px;
		font-size: 14px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

#Page3, #Basket > div:nth-of-type(2), #PackageNavbar > div#ResponsivePackageNavbar, .mainPackage > span,
.features > span {
	display: none;
}
/*#endregion*/


#PackageLoading {
	position: relative;
	top: 50px;
}

	#PackageLoading > img {
		width: 120px;
	}

.btn-licence {
	border-radius: 5px;
	margin-left: 5px;
	font-weight: 500;
	transition: 400ms;
	padding: 13px 8px;
	font-size: 15px;
	background: #f9e7f7;
	color: #bb27c5;
	border: 2px solid #bb27c5;
}

@media(max-width:1400px) {
	#Main > div:first-of-type {
		gap: 1.2rem;
	}

	#Main > img {
		height: 80px;
	}

	#Main > div:first-of-type > button {
		padding: 10px;
	}

	#Main > div:first-of-type > span {
		font-size: 14px;
	}

	#Form > form > h1 {
		font-size: 34px;
		text-align: center;
	}








	.mainPackage > h3, .package2 > h3 {
		font-size: 18px;
		width: 100%;
	}

	.package2 > div > div > p, .mainPackage > div > div > p {
		font-size: 13px;
	}

	.mainPackage > p:first-of-type {
		font-size: 10px;
	}

	.mainPackage > p:last-of-type > span,
	.package2 > p:last-of-type > span {
		font-size: 14px;
	}

	.mainPackage > div > div > p::before,
	.package2 > div > div > p::before {
		height: 15px;
		width: 15px;
		font-size: 11px;
	}

	.features > div > label > input:before {
		height: 13px;
		width: 13px;
		top: -6px;
		left: -19px;
	}

	.features > div > label > input:checked::before {
		content: "✓";
		background: #f9bd03;
		color: #fff;
		border-color: #f9bd03;
		font-size: 11px;
	}

	.features > div > label {
		font-size: 12px;
		padding: 10px 0 5px 20px;
	}

		.features > div > label > b {
			font-size: 14px;
		}
}

@media(max-width:1200px) {
	#AuthContainer {
		position: static;
		transform: none;
		max-height: unset;
		width: 100%;
		grid-row-gap: 2rem;
		grid-template-columns: repeat(1, minmax(0,1fr));
		border-radius: unset;
		border-radius: 24px;
	}

	body {
		height: 100%;
		width: 100% !important;
		overflow: auto;
	}


	#Slider {
		order: 1;
		width: 70%;
		margin: 0 auto;
	}

	#Form > .Back > i {
		font-size: 17px;
		padding: 6px 10px;
	}

	#Form > form > h1 {
		font-size: 31px;
		margin: 10px 0 0 0;
	}

	#Main > div:first-of-type > span {
		font-size: 12px;
	}

	#Form > form > p {
		font-size: 14px;
	}

	#Form > form > input:first-of-type {
		margin: 0;
	}

	#Form > form {
		gap: 0.6rem;
	}


	#PackageContainer {
		grid-template-columns: 1fr;
	}



	.package2 > div > div > p,
	.mainPackage > div > div > p {
		font-size: 13px;
	}

	.mainPackage > h3,
	.package2 > h3 {
		font-size: 18px;
	}



	.mainPackage > div:last-of-type > button,
	.package2 > div:last-of-type > button,
	#Basket > div:first-of-type > span {
		font-size: 14px;
		height: 30px;
	}

	.mainPackage > div:last-of-type,
	.package2 > div:last-of-type {
		font-size: 18px;
	}

	#Basket > div:first-of-type > div:first-of-type > h3 {
		font-size: 19px;
	}

	#Basket > div:first-of-type > div:first-of-type > p {
		font-size: 12px;
		line-height: 1pc;
	}

	#Basket > div:first-of-type > h3 {
		font-size: 15px;
		line-height: 16px;
		padding-top: 15px;
	}

	#Basket > div:first-of-type > p {
		font-size: 14px;
	}

	#Basket > div:first-of-type > label > input {
		width: 11px;
		height: 11px;
		position: relative;
		top: 3px;
	}

	#PackageNavbar > div > :is(span, b) {
		padding: 5px 19px;
		font-size: 14px;
	}

	#PackageNavbar > h1 {
		font-size: 24px;
	}

	#PackageNavbar > p {
		font-size: 15px;
	}

	#ResponsiveBasketBtn {
		display: flex;
	}

	#Basket {
		position: fixed;
		left: -16px;
		top: 0;
		width: 102vw;
		height: 100vh;
		margin: 0;
		padding: 0;
		background: #00000061;
		padding-left: 16px;
		z-index: 99999999;
		display: none;
	}

		#Basket > div:first-of-type,
		#Basket > div:nth-of-type(2) {
			background: #ececec;
			padding-bottom: 17px;
			width: 400px;
			height: 100%;
			border-radius: 0;
			position: absolute;
			left: -400px;
			transition: 500ms;
		}

		#TransferPayment,
		#Basket > div:nth-of-type(2) {
			position: relative;
			display: none;
			flex-direction: column;
			height: 100%;
			min-width: 400px;
			margin: 0;
			border-radius: 0;
		}

	#Page3 {
		height: 100%;
		width: 400px;
		margin: 0;
	}

		#Page3 > div {
			min-width: 100%;
			height: 100%;
		}

			#Page3 > div > div:first-of-type {
				border-radius: 0px 0px 70px 0px;
			}

	#Basket > div:first-of-type > div:first-of-type {
		border-radius: 0;
	}

	#Basket > div:first-of-type > label > p {
		font-size: 12px;
	}

	#Basket > div:first-of-type > div:last-of-type > button,
	#Basket > div:first-of-type > div:last-of-type > input {
		height: 40px;
	}

	#Basket > div:first-of-type > img {
		height: 200px;
	}
}

@media(max-width:992px) {


	#Form > .Back {
		top: 40px;
		left: 0;
	}

	#Main > div:first-of-type > span {
		font-size: 15px;
	}

	#Form > form {
		gap: 0.8rem;
	}

		#Form > form > h1 {
			font-size: 30px;
		}

	#Page1 > input:nth-of-type(1) {
		grid-column: 1/3;
		grid-row: 2;
	}

	#Page1 > input:nth-of-type(2) {
		grid-column: 1/3;
		grid-row: 3;
	}

	#Page1 > input:nth-of-type(3) {
		grid-column: 1/3;
		grid-row: 4;
	}

	#Page1 > input:nth-of-type(4) {
		grid-column: 1/3;
		grid-row: 5;
	}

	#Page2 > div > div > label > div {
		flex-direction: column;
		align-items: center;
	}

	#Package {
		order: -1;
		width: 100%;
		align-items: center;
	}

	#CardForm {
		flex-direction: column;
	}

		#CardForm > div:first-of-type,
		#CardForm > div:last-of-type {
			width: 100%;
		}

	#PackageNavbar > div#ResponsivePackageNavbar {
		display: flex;
	}

	.package2 {
		display: none;
	}

	.package2,
	.package1 {
		width: 100%;
		height: max-content;
		border-radius: 10px !important;
	}
}

@media(max-width:768px) {
	#PackageNavbar > div.select {
		display: flex;
	}

	#PackageNavbar > div:first-of-type {
		display: none;
	}

	#AuthContainer {
		padding: 2rem 0;
	}

	#Slider {
		width: 80%;
	}

	#Main {
		width: 80%;
	}

	#Front > div:last-of-type > p:first-of-type {
		width: 230px;
	}

	#Back > img {
		width: 65px;
		object-fit: contain;
	}
}

@media(max-width:576px) {
	input, select {
		height: 44px;
		padding: 10px 20px;
		font-size: 15px;
	}

	#Slider {
		width: 90%;
	}

	#Main {
		width: 90%;
	}

	#Page1 > div {
		width: 100%;
	}

	#Form > .Back {
		left: -12px;
	}

	#Front > div:last-of-type > p:first-of-type {
		width: 53%;
	}

	#Front > p > span {
		width: 6px;
	}

	#CardForm > div {
		flex-wrap: wrap;
		row-gap: 0;
	}

		#CardForm > div > label:last-of-type {
			width: 100%;
		}

	#Front > div:last-of-type > div > p > span,
	#Front > div:last-of-type > p:first-of-type > span {
		font-size: 13px;
	}

	#Front > div:last-of-type > p:first-of-type > b,
	#Front > div:last-of-type > div > b {
		font-size: 11px;
	}

	#Front, #Back {
		padding: 20px 5px;
	}

	.PackageSpecial > label {
		height: auto;
		font-size: 13px;
	}

	.PackageSpecial {
		gap: 2rem;
	}

	#CardForm > div:first-of-type > div,
	#CardForm > div:last-of-type > div:last-of-type {
		gap: 0.3rem;
	}

	#Basket > div:first-of-type, #Basket > div:nth-of-type(2),
	#TransferPayment, #Basket > div:nth-of-type(2),
	#Page3 {
		min-width: 300px !important;
		width: 300px !important;
	}

	#Front > p > span {
		width: 12px;
	}

	#Basket {
		width: 105vw;
	}

	#PackageNavbar > p {
		font-size: 13px;
		width: 100%;
		text-align: center;
	}

	#Content > div:not(#PackageNavbar) {
		position: relative;
		height: 445px;
	}

	.mainPackage {
		width: 100%;
		height: 445px;
		background: #fff;
		border-radius: 10px;
	}

	.features {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: absolute;
		width: 100%;
		height: 100%;
		transition: 300ms;
		z-index: -1;
		right: 0;
		border-radius: 10px;
	}

	#ResponsiveBasketBtn {
		right: 11px;
		top: 6px;
		width: 90px;
		font-size: 11px;
		height: 25px;
	}

	.mainPackage > span,
	.features > span {
		display: block;
		background: #3734a5;
		color: #f9bd03;
		width: max-content;
		padding: 2px 9px;
		font-size: 14px;
		border-radius: 15px;
		border-top-left-radius: 0;
		cursor: pointer;
	}

	.features > span {
		background: #fff;
		color: #5634a5;
	}

	.addToBasket {
		display: flex;
	}
}
