* {
	padding: 0;
	margin: 0;
}

:root {
	--primary-color: #9818da;
	--secondary-color: #9818da;
	--hover-color: #eb7ef5;
	--background-dark: #121212;
	--background-light: #1a1a1a;
	--text-color: #ffffff;
	--text-muted: #818992;
}

/* width */
::-webkit-scrollbar {
	width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
	background: var(--background-dark);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--hover-color);
}


body {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	background-color: var(--background-dark);
}

a {
	color: var(--primary-color);
}

a:hover {
	color: var(--hover-color);
}

h1,
h2,
h3 {
	font-weight: 700;
}

h4,
h5 {
	font-weight: 600;
	color: var(--text-color);
}

h6 {
	font-weight: 500;
}

.white {
	color: var(--text-color) !important;
}

.black {
	color: #000000;
}

.background-second {
	background-color: var(--background-dark);
}

.navbar {
	position: fixed;
	right: 0;
	left: 0;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	min-height: 50px;
	line-height: 50px;
	background: transparent;
	z-index: 1030;
}

.navbar .active {
	color: var(--primary-color) !important;
}

.navbar .navbar-brand {
	color: white;
	font-size: 1.1rem;
}
.navbar .nav-item {
	margin: 0 5px;
	padding: 0;
}

.navbar .nav-item a {
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
}

.navbar .nav-item a:hover {
	color: var(--hover-color);
}

.navbar .nav-link {
	position: relative;
	padding: 0;
}

.navbar .logo-1 {
	height: 50px;
}

.navbar .navbar-toggler {
	cursor: pointer;
	outline: none !important;
}

.navbar .navbar-toggler span {
	color: #fff;
}

.navbar-style2 .active:after,
.navbar-style2 .nav-link:after {
	display: none;
}

.nav-scroll {
	background: var(--background-dark);
	-webkit-box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
	box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.nav-scroll .navbar-nav>li>a {
	color: rgb(177, 177, 177);
}

.nav-scroll .navbar-brand img {
	-webkit-transform: scale(1.03) !important;
	transform: scale(1.03) !important;
}

.nav-scroll .navbar-toggler {
	cursor: pointer;
}

.nav-scroll .navbar-toggler span {
	color: #333;
}

.nav-scroll .nav-link:hover:after {
	background-color: #2388ed;
}

.nav-scroll .active {
	position: relative;
}

.banner {
	/*background: #7a60ff;*/
	background: var(--background-dark);
	padding: 100px 0px;
	position: relative;
}

.banner::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/pattern.png);
}

.banner a.weblink {
	color: var(--text-color);
	border-bottom: 1px dotted var(--text-color);
}

.banner a:hover {
	text-decoration: none;
}

.svg-wave {
	position: absolute;
	bottom: 0;
	width: 100%;
}

.banner-text {
	padding-right: 80px;
	margin: 50px 0px 0px;
}

.banner-text p {
	margin: 40px 0px;
}

.banner-text ul {
	list-style: none;
}

.banner-text ul li {
	display: inline-block;
	margin: 0px 10px 10px 0px;
}

.banner-text ul li a {
	display: block;
}

.banner-text ul li a img {
	width: 150px;
	border-radius: 7px;
}

.prelative {
	position: relative
}

.section-padding {
	padding: 80px 0px;
}

.sectioner-header {
	width: 69%;
	margin: 0 auto;
}

.line {
	height: 2px;
	width: 50px;
	background: var(--secondary-color);
	display: block;
	margin: 20px auto 20px;
}

.line::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 150px;
	height: 2px;
	border-bottom: 2px dashed var(--secondary-color);
	margin-left: -75px;
}

.sectioner-header p {
	color: var(--text-muted);
	font-size: 17px;
}

.section-content {
	margin-top: 80px;
}

.icon-box {
	margin-bottom: 50px;
}

.icon-box i {
	display: block;
	position: relative;
	width: 135px;
	height: 135px;
	border-radius: 100px;
	/*background: #7a60ff;*/
	background: var(--background-light);
	color: var(--secondary-color);
	font-size: 50px;
	line-height: 135px;
	margin: 0 auto;
}

.icon-box h5 {
	margin-top: 30px;
}

.icon-box p {
	color: var(--text-muted);
	font-size: 14px;
	width: 80%;
	margin: 0 auto;
}

.about-btn {
	color: var(--secondary-color);
	padding: 5px 10px;
	/*border-radius: 20px;*/
	margin-top: 30px;
	display: inline-block;
	font-size: 18px;
}

.about-btn:hover {
	color: var(--hover-color);
	text-decoration: none;
	transform: translateY(-3px);
}

.video-section {
	background: url(../images/video-bg.jpeg) no-repeat fixed center;
	background-size: cover;
	overflow: hidden;
}

.video-overlay {
	background: linear-gradient(to right, #121212, #121212dc);
}

.video-section h3 {
	font-weight: 600;
	font-size: 38px;
}

.video-section i {
	display: block;
	position: relative;
	width: 70px;
	height: 70px;
	border-radius: 100px;
	background: var(--text-color);
	color: var(--secondary-color);
	font-size: 30px;
	line-height: 70px;
	margin: 0 auto;
	cursor: pointer;
}

.video-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	align-content: center !important;
	-ms-flex-line-pack: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.video-popup .video-src {
	position: relative;
	width: 700px;
	max-width: 80%;
}

.video-popup .iframe-src {
	width: 100%;
	height: 0;
	padding-top: 56.3%;
	position: relative;
	display: none;
}

.video-popup .iframe-src iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.single-feature {
	margin-bottom: 80px;
	margin-top: 40px;
}

.single-feature h5 {
	font-size: 16px;
}

.media-right-margin {
	margin-right: 25px;
}

.single-feature p {
	font-size: 13px;
	color: var(--text-muted);
}

/*.icon-border {
}*/
.icon-border span {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 100px;
	color: var(--primary-color);
	font-size: 18px;
	line-height: 50px;
	border: 1px solid var(--primary-color);
}

.team {
	background: var(--background-light);
}

.team-detail {
	margin-top: 40px;
}

.team-detail img {
	border-radius: 50%;
	width: 70%;
}

.team-detail h4 {
	color: var(--primary-color);
	margin-top: 20px;
	font-size: 17px;
	margin-bottom: 0px;
	cursor: context-menu;
}

.team-detail p {
	color: var(--text-muted);
	cursor: context-menu;
}

.testimonial {
	background: #7a60ff;
	background: var(--background-dark);
	padding: 100px 0px;
	position: relative;
}

.testimonial::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/pattern.png);
}

.bx-prev {
	left: -90px !important;
	background: url(../images/arrow-left.png) no-repeat !important;
	background-size: auto auto !important;
	background-size: 100% 100% !important;
}

.bx-next {
	right: -90px !important;
	background: url(../images/arrow-right.png) no-repeat !important;
	background-size: auto auto !important;
	background-size: 100% 100% !important;
}

.bx-wrapper {
	border: none !important;
	background: rgba(255, 255, 255, 0.81) !important;
	border-radius: 5px !important;
	box-shadow: none !important;
}

.slider-item {
	padding: 20px;
}

.slider .test-img img {
	border: 12px solid #fff;
	border-radius: 50%;
	width: 100%;
	height: auto;
}

.test-img {
	float: left;
	width: 20%;
	margin-right: 5%;
}

.test-text {
	float: left;
	width: 75%;
}

.slider .title {
	display: block;
	position: relative;
	margin: 0 0 20px;
	font-size: 1.125em;
	line-height: 1.25;
}

.slider .title span {
	display: block;
	font-size: 1.5em;
	font-weight: 700;
}

.faq {
	background: var(--background-dark);
}

.sap {
	background: var(--background-light);
}

.faq-content {
	margin: 20px 0px;
}

.faq-content h4 {
	font-weight: 400;
	font-size: 20px;
}

.faq-content p {
	color: var(--text-muted);
	font-weight: 300;
	margin-top: 15px;
}

.contact {
	background-color: var(--background-light);
}

#contact_form .form-input {
	border-bottom: 2px solid var(--background-dark);
	border-right: 2px solid var(--background-dark);
}

input {
	height: 42px;
	padding: 0 1rem;
	background: var(--background-light);
	/*border-radius: 10px;*/
	margin-bottom: 1rem;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: 0;
}

#contact_form textarea {
	resize: none;
	padding: 1rem;
	height: 150px;
	background: var(--background-light);
	border: 0;
	/*border-radius: 10px;*/
	margin-bottom: 1rem;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn-grad {
	width: 150px !important;
	color: var(--secondary-color);
	padding: 5px 40px;
	border: 2px solid var(--secondary-color);
	border-radius: 20px;
	display: inline-block;
	font-size: 18px;
	background-color: #12121200;
}

.btn-grad:hover {
	background: var(--secondary-color);
	color: var(--hover-color);
}

/*.contact-info {
	padding: 1rem 2rem 1rem;
	border-radius: 8px;
}

.contact-item {
	margin: 23px 0px;
}

.contact-item i {
	font-size: 20px;
}

.contact-item p {
	line-height: 20px;
	margin: 0;
}*/

.contact-background {
	display: flex;
	/*min-height: 80vh;*/
	padding-top: 50px;
	padding-bottom: 30px;
}

.contact-container {
	flex: 0 1 700px;
	margin: auto;
	padding: 10px;
}

.contact-screen {
	position: relative;
	border-radius: 15px;
}

.contact-screen:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	bottom: 0;
	border-radius: 15px;
	z-index: -1;
}

.contact-screen-header {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	/*border-bottom: 2px solid #212121;*/
}

.contact-screen-header-left {
	margin-right: auto;
}

.contact-screen-header-button {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 3px;
	border-radius: 8px;
	background: white;
}

.contact-screen-header-button.close2 {
	background: var(--primary-color);
}

.contact-screen-header-button.maximize {
	background: #fff;
}

.contact-screen-header-button.minimize {
	background: chartreuse;
}

.contact-screen-header-right {
	display: flex;
}

.contact-screen-header-ellipsis {
	width: 3px;
	height: 3px;
	margin-left: 2px;
	border-radius: 8px;
	background: #999;
}

.contact-screen-body {
	display: flex;
}

.contact-screen-body-item {
	flex: 1;
	padding: 20px;
}

.contact-screen-body-item.left {
	display: flex;
	flex-direction: column;
}

.contact-app-title {
	display: flex;
	flex-direction: column;
	position: relative;
	color: var(--primary-color);
	font-size: 26px;
}

.contact-app-title:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 25px;
	height: 4px;
	background: var(--primary-color);
}

.contact-app-contact {
	margin-top: auto;
	font-size: 8px;
	color: #888;
}

.contact-app-form-group {
	margin-bottom: 15px;
}

.contact-app-form-group.message {
	margin-top: 40px;
}

.contact-app-form-group.buttons {
	margin-bottom: 0;
	text-align: right;
}

.contact-app-form-control {
	width: 100%;
	padding: 10px 0;
	background: none;
	border: none;
	border-bottom: 1px solid #666;
	color: #ddd;
	font-size: 14px;
	text-transform: uppercase;
	outline: none;
	transition: border-color .2s;
}

.contact-app-form-control::placeholder {
	color: #666;
}

.contact-app-form-control:focus {
	border-bottom-color: #ddd;
}

.contact-app-form-button {
	background: none;
	border: none;
	color: var(--primary-color);
	margin-left: 10px;
	font-size: 14px;
	cursor: pointer;
	outline: none;
	border-bottom: 2px solid #49007700;
}

.contact-app-form-button:hover {
	color: var(--hover-color);
	/*text-decoration: underline;*/
	border-bottom: 2px solid var(--hover-color);
}


@media screen and (max-width: 520px) {
	.contact-screen-body {
		flex-direction: column;
	}

	.contact-screen-body-item.left {
		margin-bottom: 30px;
	}

	.contact-app-title {
		flex-direction: row;
	}

	.contact-app-title span {
		margin-right: 12px;
	}

	.contact-app-title:after {
		display: none;
	}
}

@media screen and (max-width: 600px) {
	.contact-screen-body {
		padding: 40px;
	}

	.contact-screen-body-item {
		padding: 0;
	}
}



.footer-div {
	background: var(--background-dark);
	position: relative;
	padding: 20px;
	border-bottom: 2px solid var(--background-light);
}

.footer-div-footer {
	color: var(--text-color);
	padding: 10px 10px;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-image {
	height: 60px;
}

.footer-section {
	flex: 1;
	min-width: 200px;
	margin: 10px;
}

.footer-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-subtitle {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.footer-link {
	color: var(--primary-color);
	text-decoration: none;
	font-size: 14px;
	margin-top: 10px;
	display: inline-block;
	border-bottom: 2px solid rgba(128, 255, 0, 0);
}

.footer-link:hover {
	color: var(--hover-color);
	border-bottom: 2px solid var(--hover-color);
}

.footer-social {
	margin-top: 20px;
}

.social-link {
	color: var(--text-color);
	margin-right: 10px;
	text-decoration: none;
	font-size: 18px;
	padding-right: 20px;
}

.social-link:hover {
	color: var(--hover-color);
}

.footer-div a {
	text-decoration: none;
}


.footer-div p {
	margin: 5px 0;
	font-size: 14px;
	line-height: 1.5;
}



.footer {
	position: relative;
	grid-area: footer;
	display: flex;
	justify-content: space-between;
	padding: 1rem;
}

.content {
	display: flex;
	flex-direction: column;
	color: white;
}

.content>div {
	margin-bottom: 1rem;
}

.content a {
	color: white;
	text-decoration: none;
	margin-right: 0.5rem;
}

.footer-copy {
	color: var(--text-muted);
	font-size: 13px;
	text-align: center;
	padding: 15px 0px;
}

.footer-copy p {
	margin-bottom: 0px;
}

@media all and (max-width:991px) {
	.navbar .navbar-collapse {
		overflow: auto;
		background: #121212;
		color: #fff !important;
		text-align: center;
		padding: 10px 0;
	}

	.nav-scroll .navbar-collapse {
		background: #121212 !important;
	}

	#contact_form {
		margin-bottom: 20px;
	}
}

@media all and (max-height:645px) and (max-width: 991px) {
	.navbar .navbar-collapse {
		height: 80vh;
	}
}

@media all and (max-height:300px) and (max-width: 991px) {
	.navbar .navbar-collapse {
		display: none;
	}
}

@media all and (max-width: 300px) {
	.navbar .navbar-collapse {
		display: none;
	}
}


@media all and (max-width:768px) {

	.nav-scroll .navbar-brand img,
	.navbar-brand img {
		transform: scale(0.75) !important;
		-webkit-transform: scale(0.9) !important;
	}

	.banner-text {
		padding-right: 0px;
		margin: 10px 0px 0px;
	}

	h2 {
		font-size: 25px;
	}

	h3 {
		font-size: 23px;
	}

	.section-padding {
		padding: 40px 0px;
	}

	.banner-text p {
		margin: 25px 0px;
	}

	.banner-text ul li a img {
		width: 140px;
		border-radius: 7px;
	}

	.sectioner-header {
		width: 90%;
	}

	.sectioner-header p {
		font-size: 14px;
	}

	.about-btn {
		padding: 5px 30px;
		margin-top: 0px;
		font-size: 16px;
	}

	.single-feature {
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.team-detail {
		margin-top: 20px;
	}

	.team-detail img {
		width: 50%;
	}

	.bx-controls {
		display: none;
	}

	.bx-wrapper {
		margin: 0px 20px !important;
	}

	.slider .test-img img {
		margin: 0 auto;
	}

	.test-img {
		float: none;
		width: 200px;
		height: 200px;
		margin: 0 auto;
	}

	.test-text {
		float: none;
		width: 100%;
		text-align: center;
	}

	.section-content {
		margin-top: 40px;
	}

	.faq-content {
		margin: 10px 0px;
	}

	.faq-content h4 {
		font-size: 16px;
	}

	.faq-content p {
		font-size: 13px;
	}

	#contact_form {
		margin-bottom: 20px;
	}

	.contact-item {
		font-size: 12px;
	}

	.download ul li a img {
		width: 120px;
	}

	.footer-copy p {
		font-size: 10px;
	}
}

.m300px {
	display: none;
}

.mh300px {
	display: none;
}

@media screen and (max-width: 300px) {
	.banner {
		display: none;
	}

	.about {
		display: none;
	}

	.feature {
		display: none;
	}

	.team {
		display: none;
	}

	.testimonial {
		display: none;
	}

	.faq {
		display: none;
	}

	.contact {
		display: none;
	}

	.footer-div {
		display: none;
	}

	.footer-copy {
		display: none;
	}

	.sap {
		display: none;
	}

	.video-section {
		display: none;
	}

	.m300px {
		display: block;
		position: absolute;
		padding: 5px;
		color: white;
		background-color: black;
		padding-top: 100px;
		height: 100vh;
	}
}

@media screen and (max-height: 300px) {
	.banner {
		display: none;
	}

	.about {
		display: none;
	}

	.feature {
		display: none;
	}

	.team {
		display: none;
	}

	.testimonial {
		display: none;
	}

	.faq {
		display: none;
	}

	.contact {
		display: none;
	}

	.footer-div {
		display: none;
	}

	.footer-copy {
		display: none;
	}

	.sap {
		display: none;
	}

	.video-section {
		display: none;
	}

	.mh300px {
		display: block;
		position: absolute;
		padding: 5px;
		color: white;
		background-color: black;
		padding-top: 100px;
		height: 100vh;
	}

}

/*----------------------------------------------------------Pop Window----------------------------------------------------------*/

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	/* black with 50% opacity */
	z-index: 900;
	display: none;
}

.overlay.show {
	display: block;
}

.pop-about-page {
	display: none;
	/* Hidden initially */
	/*position: fixed;*/
	/*top: 300px;*/
	margin-top: 40px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	background: var(--background-light);
	position: fixed;
	padding: 10px;
	padding-top: 35px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	width: 80vw;
	height: 70vh;
	z-index: 999;
	color: var(--text-color);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.about-section-pop-content-section {
	/*background: var(--background-dark);*/
	overflow-x: hidden;
	height: 100%;
}

.pop-about-page.show {
	display: block;
	/* Show first */
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.pop-about-overlay.show {
	display: block;
}

/* Close Animation */
.pop-about-page.hide {
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -50%) scale(0.8);
}

.close-button-about-page {
	position: absolute;
	top: 5px;
	right: 9px;
	font-size: 20px;
	cursor: pointer;
	color: var(--text-color);
}

.title-about-page {
	position: absolute;
	top: 7px;
	left: 9px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	color: var(--text-color);
}

.close-button-about-page:hover {
	transform: scale(1.3);
}

@media screen and (max-height: 300px) {
	.pop-about-page.show {
		display: none;
		/* Show first */
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, -50%) scale(1);
	}

}

@media screen and (max-width: 300px) {
	.pop-about-page.show {
		display: none;
		/* Show first */
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, -50%) scale(1);
	}

}

.pop-contact-page {
	display: none;
	/* Hidden initially */
	/*position: fixed;*/
	/*top: 300px;*/
	margin-top: 40px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	background: var(--background-light);
	position: fixed;
	padding: 10px;
	padding-top: 35px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	width: 80vw;
	height: 70vh;
	z-index: 999;
	color: var(--text-color);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-section-pop-content-section {
	/*background: var(--background-dark);*/
	overflow-x: hidden;
	height: 100%;
}

.pop-contact-page.show {
	display: block;
	/* Show first */
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

/* Close Animation */
.pop-contact-page.hide {
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -50%) scale(0.8);
}

.close-button-contact-page {
	position: absolute;
	top: 5px;
	right: 9px;
	font-size: 20px;
	cursor: pointer;
	color: var(--text-color);
}

.title-contact-page {
	position: absolute;
	top: 7px;
	left: 9px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	color: var(--text-color);
}

.close-button-contact-page:hover {
	transform: scale(1.3);
}

@media screen and (max-height: 300px) {
	.pop-contact-page.show {
		display: none;
		/* Show first */
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, -50%) scale(1);
	}

}

@media screen and (max-width: 300px) {
	.pop-contact-page.show {
		display: none;
		/* Show first */
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, -50%) scale(1);
	}

}

/* Pop Checkout */

.pop-sub-checkout {
	display: none;
	/* Hidden by default */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.popup-checkout {
	margin-top: 80px;
	background: #1a1a1a;
	color: #fff;
	padding: 25px 30px;
	width: 320px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
	position: relative;
	display: flex;
	flex-direction: column;
	/*gap: 15px;*/
}

@media screen and (max-height: 590px) {
	.popup-checkout {
	  height: 70vh;
	  overflow-x: auto;
	}
  }

.popup-checkout::-webkit-scrollbar {
	width: 0px;
}

.popup-checkout label {
	font-size: 14px;
	color: #ccc;
	margin: 0;
	text-transform: uppercase;
}

.popup-checkout input {
	background: none;
	border: none;
	border-bottom: 1px solid #555;
	padding: 0px;
	color: #fff;
	outline: none;
	width: 100%;
}

.popup-checkout .bill {
	margin-top: 20px;
}

.popup-checkout .bill h2 {
	font-size: 18px;
	margin-bottom: 10px;
}

.popup-checkout .row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin: 5px 0;
}

.popup-checkout .checkout-btn {
	margin-top: 20px;
	padding: 10px;
	background: #9818da;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	outline: none !important;
}

.popup-checkout .checkout-btn:hover {
	background: #eb7ef5;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
}



/*.pop-sub-checkout2 {
	display: none; 
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0,0,0,0.7);
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
  }

  .popup-checkout2 {
	background: #1a1a1a;
	color: #fff;
	padding: 25px 30px;
	width: 320px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0,0,0,0.5);
	position: relative;
	display: flex;
	flex-direction: column;
  }

  .popup-checkout2 label {
	font-size: 14px;
	color: #ccc;
	margin: 0;
	text-transform: uppercase;
  }

  .popup-checkout2 input {
	background: none;
	border: none;
	border-bottom: 1px solid #555;
	padding: 0px;
	color: #fff;
	outline: none;
	width: 100%;
  }

  .popup-checkout2 .bill1 {
	margin-top: 20px;
  }

  .popup-checkout2 .bill1 h2 {
	font-size: 18px;
	margin-bottom: 10px;
  }

  .popup-checkout2 .row1 {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin: 5px 0;
  }

  .popup-checkout2 .checkout-btn {
	margin-top: 20px;
	padding: 10px;
	background: #9818da;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
  }

  .popup-checkout2 .checkout-btn:hover {
	background: #eb7ef5;
  }

  .close-btn2 {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
  }

  .pop-sub-checkout3 {
	display: none; 
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0,0,0,0.7);
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
  }

  .popup-checkout3 {
	background: #1a1a1a;
	color: #fff;
	padding: 25px 30px;
	width: 320px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0,0,0,0.5);
	position: relative;
	display: flex;
	flex-direction: column;
  }

  .popup-checkout3 label {
	font-size: 14px;
	color: #ccc;
	margin: 0;
	text-transform: uppercase;
  }

  .popup-checkout3 input {
	background: none;
	border: none;
	border-bottom: 1px solid #555;
	padding: 0px;
	color: #fff;
	outline: none;
	width: 100%;
  }

  .popup-checkout3 .bill1 {
	margin-top: 20px;
  }

  .popup-checkout3 .bill1 h2 {
	font-size: 18px;
	margin-bottom: 10px;
  }

  .popup-checkout3 .row1 {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin: 5px 0;
  }

  .popup-checkout3 .checkout-btn {
	margin-top: 20px;
	padding: 10px;
	background: #9818da;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
  }

  .popup-checkout3 .checkout-btn:hover {
	background: #eb7ef5;
  }

  .close-btn3 {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
  }*/

.cupon-check {
	color: #9818da;
	cursor: pointer;
}

.cupon-check:hover {
	color: #eb7ef5;
}


/* Autopay checkbox Styles */
.autopay-checkbox {
	margin: 0 0;
	padding: 0;
	border-radius: 8px;
	transition: background 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: flex-start;
  }
  
  .checkbox {
	--background: #ffffff00;
	--border: #9818da;
	--border-hover: #BBC1E1;
	--border-active: #eb7ef5;
	--tick: #fff;
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
	color: #ffffff;
	user-select: none;
  }
  
  .checkbox input,
  .checkbox svg {
	width: 18px;
	height: 18px;
	display: block;
	transform: scale(0.86); /* Adjusted scale for 21 → 18 */
  transform-origin: top left; /* Anchor scale */
  }
  
  .checkbox input {
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	outline: none;
	background: var(--background);
	border: none;
	margin: 0;
	padding: 0;
	cursor: pointer;
	border-radius: 4px;
	transition: box-shadow .3s;
	box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
  }
  
  .checkbox input:hover {
	--s: 2px;
	--b: var(--border-hover);
  }
  
  .checkbox input:checked {
	--b: var(--border-active);
  }
  
  .checkbox svg {
	pointer-events: none;
	fill: none;
	stroke-width: 2.5px; /* or 1.5px */
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke: var(--stroke, var(--border-active));
	position: absolute;
	top: 0.5px;
	left: -0.5px;
	width: 18px;
	height: 18px;
	transform: scale(var(--scale, 1)) translateZ(0);
  }
  
  .checkbox.path input:checked {
	--s: 2px;
	transition-delay: 0.2s;
  }
  
  .checkbox.path input:checked + svg {
	--a: 16.1 86.12;
	--o: 102.22;
  }
  
  .checkbox.path svg {
	stroke-dasharray: var(--a, 86.12);
	stroke-dashoffset: var(--o, 86.12);
	transition: stroke-dasharray .6s, stroke-dashoffset .6s;
  }
  
  .checkbox span {
	margin-left: 5px;
	position: relative;
  }
  
  .checkbox:hover::after {
	content: 'Automatically renew your subscription';
	position: absolute;
	bottom: -40px;
	left: -5px;
	/*transform: translateX(-50%);*/
	padding: 5px 5px;
	background-color: #333;
	color: white;
	font-size: 12px;
	border-radius: 4px;
	white-space: nowrap;
	z-index: 1000;
	opacity: 1;
  }

  /*Backend Message or Error And Loading */

  .backend-message-pop {
	position: fixed;
	/* <-- Change from absolute */
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
	background-color: #181818;
	color: #bbb;
	border-radius: 10px;
	width: 400px;
	max-width: 90%;
	/* responsive */
	height: auto;
	display: none;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	/* Ensure it's on top */
	text-align: center;
  }
  
  .backend-message-pop h2 {
	font-weight: 600;
	font-size: 18px;
  }
  
  .backend-message-but {
	width: 100%;
	align-items: center;
	appearance: none;
	background-color: #ffffff00;
	border: none;
	border-top: 2px solid #2e2e2e;
	box-shadow: none;
	box-sizing: border-box;
	color: #9818da;
	cursor: pointer;
	display: inline-flex;
	font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	height: 20px;
	justify-content: center;
	line-height: 1;
	padding: 15px;
	position: relative;
	text-align: center;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: top;
	white-space: nowrap;
  }
  
  .backend-message-but:hover {
	color: #eb7ef5;
  }
  
  #loader {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background: rgba(17, 17, 17, 0.863);
	display: none;
	/* hide by default */
	align-items: center;
	justify-content: center;
	z-index: 9999;
  }
  
  .loading-content {
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .loading {
	width: 80px;
	height: 30px;
	position: relative;
  }
  
  .loading p {
	margin: 0;
	color: #eb7ef5;
	font-family: "Poppins", sans-serif;
	animation: text 3.5s ease both infinite;
	font-size: 0.7rem;
	letter-spacing: 0px;
  }
  
  .loading span {
	background-color: #9916a5;
	border-radius: 4px;
	display: block;
	height: 10px;
	width: 16px;
	bottom: 0;
	position: absolute;
	transform: translateX(64px);
	animation: loading 3.5s ease both infinite;
  }
  
  .loading span:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #eb7ef5;
	border-radius: inherit;
	animation: loading2 3.5s ease both infinite;
  }
  
  /* Text animation */
  @keyframes text {
	0% {
	  transform: translateX(0px);
	}
  
	40% {
	  transform: translateX(40px);
	}
  
	80% {
	  transform: translateX(40px);
	}
  
	90% {
	  transform: translateX(0px);
	}
  
	100% {
	  transform: translateX(0px);
	}
  }
  
  /* Bar animation */
  @keyframes loading {
	0% {
	  width: 16px;
	  transform: translateX(0px);
	}
  
	40% {
	  width: 100%;
	  transform: translateX(0px);
	}
  
	80% {
	  width: 16px;
	  transform: translateX(64px);
	}
  
	90% {
	  width: 100%;
	  transform: translateX(0px);
	}
  
	100% {
	  width: 16px;
	  transform: translateX(0px);
	}
  }
  
  @keyframes loading2 {
	0% {
	  width: 16px;
	  transform: translateX(0px);
	}
  
	40% {
	  width: 100%;
	  transform: translateX(0%);
	}
  
	80% {
	  width: 100%;
	  transform: translateX(0px);
	}
  
	90% {
	  width: 100%;
	  transform: translateX(15px);
	}
  
	100% {
	  width: 16px;
	  transform: translateX(0px);
	}
  }

  .a-and-c-btn-div{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	width: 100%;
	border-top: 2px solid #2e2e2e;
	padding-top: 5px;
  }

  .aleart-message-pop {
	position: fixed;
	/* <-- Change from absolute */
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
	background-color: #222222;
	color: #bbb;
	border-radius: 10px;
	width: 400px;
	max-width: 90%;
	/* responsive */
	height: auto;
	display: none;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	/* Ensure it's on top */
	text-align: center;
  }
  
  .aleart-message-pop h2 {
	font-weight: 600;
	font-size: 18px;
  }
  
  .aleart-message-but {
	/*width: 100%;*/
	align-items: center;
	appearance: none;
	background-color: #ffffff00;
	border: none;
	/*border-top: 2px solid #2e2e2e;*/
	box-shadow: none;
	box-sizing: border-box;
	color: #9818da;
	cursor: pointer;
	display: inline-flex;
	font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	height: 20px;
	justify-content: center;
	line-height: 1;
	padding: 15px;
	position: relative;
	text-align: center;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: top;
	white-space: nowrap;
	outline: none !important;
  }
  
  .aleart-message-but:hover {
	color: #eb7ef5;
  }

  .confirm-message-pop {
	position: fixed;
	/* <-- Change from absolute */
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
	background-color: #222222;
	color: #bbb;
	border-radius: 10px;
	width: 400px;
	max-width: 90%;
	/* responsive */
	height: auto;
	display: none;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	/* Ensure it's on top */
	text-align: center;
  }
  
  .confirm-message-pop h2 {
	font-weight: 600;
	font-size: 18px;
  }
  
  .confirm-message-but {
	/*width: 100%;*/
	align-items: center;
	appearance: none;
	background-color: #ffffff00;
	border: none;
	box-shadow: none;
	box-sizing: border-box;
	color: #9818da;
	cursor: pointer;
	display: inline-flex;
	font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	height: 20px;
	justify-content: center;
	line-height: 1;
	padding: 15px;
	position: relative;
	text-align: center;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: top;
	white-space: nowrap;
	outline: none !important;
  }
  
  .confirm-message-but:hover {
	color: #eb7ef5;
  }
