﻿:root {
	/*Colors Start*/
	/*<-==========================================->*/
	--clr-neutral-100: 0, 172, 77;
	--clr-neutral-200: #aaaaaa;
	--clr-neutral-400: #e2e2e3;
	--clr-Pink: #d71e66;
	--clr-green: #0cd149;
	--clr-orange: #ff6e54;
	--clr-red: #DC2525;
	--clr-purple: #9609CA;
	--clr-neutral-800: rgba(255, 255, 255, 0.8);
	--clr-neutral-900: rgba(0, 0, 0, 0.05);
	--clr-neutral-1000: rgba(0, 0, 0, 0.7);
	--BB-Color-Pink: #f594a6;
	--BB-Color1-Light-Purple: #a1adc4;
	--BB_Color1-Dark-Purple: #7a87a3;
	--clr-primary-200: #ffffff;
	--clr-primary-300: #000000;
	--clr-primary-400: #ff0000;
	/*Colors End*/
	/*<-==========================================->*/
	/*Font size Start*/
	/*<-==========================================->*/
	--fs-normal: 16px;
	--fs-700: 40px;
	--fs-600: 23px;
	--fs-500: 23px;
	--fs-400: 18px;
	--fs-300: 16px;
	--fs-200: 16px;
	--fs-150: 16px;
	--fs-100: 16px;
	/*Font Size End*/
	/*<-==========================================->*/
	/*Font weight Start*/
	/*<-==========================================->*/
	--fw-400: 500;
	--fw-600: 600;
	--fw-700: 700;
	--fw-900: 900;
	/*Font weight End*/
	/*<-==========================================->*/
}
/* <-==========================-> */
/* CSS REST */
/* Box sizing rules */
*,
*::before,
*::after {
	box-sizing: border-box;
	touch-action: manipulation;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
	list-style: none;
}

/* Set core root defaults */
html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

p,
label,
span {
	font-size: 15px;
}

/* CSS REST End*/
/* <-==========================-> */

html {
	font-size: 62.5%;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: var(--fw-400);
	background-color: var(--dischemGray);
	line-height: 1.6;
	color: var(--clr-primary-300);
	height: 100%;
	margin: 0;
	width: 100%;
}

form {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: var(--fw-400);
	background-color: var(--dischemGray);
	line-height: 1.6;
	color: var(--clr-primary-300);
	height: 100%;
	margin: 0;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	position: relative;
	min-height: 100vh;
}

h1,
h2,
h3 {
	line-height: 1.1;
}

h2 {
	font-size: var(--fs-700);
}

/*Loader*/
/*<-==========================================->*/

.LoaderWrap {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 100000000000;
}

.Cross_Block {
	display: inline-block;
	width: 6rem;
	max-width: 6rem;
	height: 6rem;
	max-height: 6rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transform-origin: 0%;
}

.Cross_loader,
.Cross_loader_Vertical {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
}

	.Cross_loader_Vertical::before,
	.Cross_loader_Vertical::after,
	.Cross_loader::before,
	.Cross_loader::after {
		content: "";
		display: inline-block;
		height: 2rem;
		width: 2rem;
		background-color: #ffe600;
		border-radius: 0.5rem;
		position: absolute;
	}

	.Cross_loader_Vertical::before {
		animation: ball1 1.5s infinite;
		margin-left: 2rem;
	}

	.Cross_loader_Vertical::after {
		animation: ball2 1.5s infinite;
		left: 0;
		top: calc(50% - 1rem);
	}

	.Cross_loader::before {
		animation: ball3 1.5s infinite;
		margin-top: 2rem;
		margin-left: 2rem;
		bottom: 0;
	}

	.Cross_loader::after {
		animation: ball4 1.5s infinite;
		margin-left: 2rem;
		right: 0;
		top: calc(50% - 1rem);
	}

@keyframes ball1 {
	0% {
		margin-top: 0;
	}

	25% {
		margin-top: 1rem;
	}

	50% {
		margin-top: 2rem;
	}

	75% {
		margin-top: 1rem;
	}

	100% {
		margin-top: 0;
	}
}

@keyframes ball2 {
	0% {
		left: 0;
	}

	25% {
		left: calc(25% - 1rem);
	}

	50% {
		left: calc(50% - 1rem);
	}

	75% {
		left: calc(25% - 1rem);
	}

	100% {
		left: 0;
	}
}

@keyframes ball3 {
	0% {
		margin-top: 2rem;
	}

	25% {
		margin-top: 1rem;
		bottom: calc(25% - 1rem);
	}

	50% {
		margin-top: 0rem;
		bottom: calc(50% - 1rem);
	}

	75% {
		margin-top: 1rem;
		bottom: calc(25% - 1rem);
	}

	100% {
		margin-top: 2rem;
	}
}

@keyframes ball4 {
	0% {
		margin-left: 2rem;
	}

	25% {
		right: calc(25% - 1rem);
		margin-left: 1rem;
	}

	50% {
		right: calc(50% - 1rem);
		margin-left: 0rem;
	}

	75% {
		right: calc(25% - 1rem);
		margin-left: 1rem;
	}

	100% {
		margin-left: 2rem;
	}
}
/*Loader*/
/*<-==========================================->*/
/*Media Queries Start*/
/*<-==========================================->*/
@media (min-width: 600px) {
}

@media (min-width: 768px) {
}

@media screen and (min-width: 992px) {
	html {
		font-size: 60%;
	}
}

@media (min-width: 1200px) {
}

@media (min-width: 600px) {
}

@media (min-width: 992px) {
}

@media (max-width: 1220px) {
}

@media (max-width: 1100px) {
}

@media (max-width: 960px) {
}

@media (max-width: 780px) {
}

@media (max-width: 600px) {
	.Cross_Block {
		left: 50%;
	}
}

@media (max-width: 360px) {
	html {
		font-size: 49%;
	}
}

@media (max-width: 285px) {
	html {
		font-size: 45%;
	}
}

/*Media Queries End*/
/*<-==========================================->*/
