:root {
	/*========== Colors ==========*/
	--black-color: #000;
	--bg-color: #1e071e;
	--white-color: #fff;
	--purple-color: #ee24ff;
	--blue-color: #2c93ff;
	--purple-border-color: #49394a;
}

/*========== Layout ==========*/

body {
	position: relative;
	background: url('../img/bg_main.webp') var(--bg-color) no-repeat;
	background-size: 100%;
	font-family: 'Instrument Sans', sans-serif;
}

.acer__black {
	font-family: 'Instrument Sans', sans-serif;
	font-weight: 700;
}

.acer__light {
	font-family: 'Instrument Sans', sans-serif;
}

.purple__color {
	color: var(--purple-color);
}

.btn__blue {
	border: 2px solid var(--blue-color);
}

.border__purple {
	background: var(--purple-border-color);
}

.border__table {
	background: #6e6270;
}

.bg__table {
	background: #4a394b;
}

.btn__buy {
	background: rgb(225, 45, 254);
	background: -moz-linear-gradient(
		90deg,
		rgba(225, 45, 254, 1) 0%,
		rgba(194, 63, 253, 1) 33%,
		rgba(100, 116, 255, 1) 69%,
		rgba(15, 164, 255, 1) 100%
	);
	background: -webkit-linear-gradient(
		90deg,
		rgba(225, 45, 254, 1) 0%,
		rgba(194, 63, 253, 1) 33%,
		rgba(100, 116, 255, 1) 69%,
		rgba(15, 164, 255, 1) 100%
	);
	background: linear-gradient(
		90deg,
		rgba(225, 45, 254, 1) 0%,
		rgba(194, 63, 253, 1) 33%,
		rgba(100, 116, 255, 1) 69%,
		rgba(15, 164, 255, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e12dfe",endColorstr="#0fa4ff",GradientType=1);
	color: #fff;
	letter-spacing: 2px;
	padding: 8px 0;
	width: 70%;
	border-radius: 15px;
	margin: 20px auto;
	text-transform: uppercase;
	font-family: 'Instrument Sans', sans-serif;
	font-weight: 700;
}

.border__bottom-gradient {
	background: rgb(225, 45, 254);
	background: -moz-linear-gradient(
		90deg,
		rgba(225, 45, 254, 1) 0%,
		rgba(194, 63, 253, 1) 33%,
		rgba(100, 116, 255, 1) 69%,
		rgba(15, 164, 255, 1) 100%
	);
	background: -webkit-linear-gradient(
		90deg,
		rgba(225, 45, 254, 1) 0%,
		rgba(194, 63, 253, 1) 33%,
		rgba(100, 116, 255, 1) 69%,
		rgba(15, 164, 255, 1) 100%
	);
	background: linear-gradient(
		90deg,
		rgba(225, 45, 254, 1) 0%,
		rgba(194, 63, 253, 1) 33%,
		rgba(100, 116, 255, 1) 69%,
		rgba(15, 164, 255, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e12dfe",endColorstr="#0fa4ff",GradientType=1);
}

/*========== RULES ==========*/

#rules {
	background: url('../img/bg_header.webp') no-repeat;
	background-size: 100%;
}

/*========== Formsection ==========*/

.formSection {
	margin: 30px auto 20px auto !important;
	text-align: center;
	padding: 10px 10px 25px 10px;
	border: 2px solid #6a256a;
	background: rgba(213, 213, 213, 0.1);
	width: 95%;
	border-radius: 40px;
}

.formSection > h2 {
	font-family: 'Instrument Sans', sans-serif;
	font-size: 36px !important;
	font-weight: 700;
}

#form h4 {
	font-family: 'Instrument Sans', sans-serif;
	margin: 30px auto !important;
	font-weight: 700;
}

#form ::placeholder {
	color: rgba(0, 0, 0, 0.6);
}

.formSection .formSection__form {
	width: 700px;
	margin: 0 auto;
}

.formSection .formSection__form .oneInput,
.formSection .formSection__form .twoInput {
	margin: 10px auto;
}

.formSection .formSection__form .twoInput {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 15px;
}

.formSection .formSection__form .threeInput {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 15px;
	align-items: center;
}

.formSection .formSection__form .oneInput input,
.formSection .formSection__form .twoInput input,
.formSection .formSection__form .threeInput input {
	width: 100%;
	padding: 15px 0 15px 12px;
	border-radius: 25px;
	border: 1px solid #d5d5d5;
	font-family: 'Instrument Sans', sans-serif;
	font-size: 13px;
}

.formSection .formSection__form select {
	font-family: 'Instrument Sans', sans-serif;
	width: 100%;
	font-size: 13px;
	padding: 10px 10px 10px 30px;
	height: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../img/arrow.png) 93% / 4.5% no-repeat #fff;
	border-radius: 25px;
	border: 1px solid #d5d5d5;
}

.formSection .formSection__form .oneInput select {
	background: url(../img/arrow.png) 96.5% / 2.2% no-repeat #fff;
}

.formSection .formSection__form #fileSection {
	background: #fff;
	border: 1px solid #d5d5d5;
	color: #000;
	border-radius: 25px;
	padding: 30px 23px 20px 23px;
	width: 100%;
}

#form #btnSend {
	position: absolute;
	bottom: 150px;
	left: 50%;
	margin-left: -170px;
	background: rgb(225, 45, 254);
	background: -moz-linear-gradient(
		90deg,
		rgba(225, 45, 254, 1) 0%,
		rgba(194, 63, 253, 1) 33%,
		rgba(100, 116, 255, 1) 69%,
		rgba(15, 164, 255, 1) 100%
	);
	background: -webkit-linear-gradient(
		90deg,
		rgba(225, 45, 254, 1) 0%,
		rgba(194, 63, 253, 1) 33%,
		rgba(100, 116, 255, 1) 69%,
		rgba(15, 164, 255, 1) 100%
	);
	background: linear-gradient(
		90deg,
		rgba(225, 45, 254, 1) 0%,
		rgba(194, 63, 253, 1) 33%,
		rgba(100, 116, 255, 1) 69%,
		rgba(15, 164, 255, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e12dfe",endColorstr="#0fa4ff",GradientType=1);
	color: #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: 'Instrument Sans', sans-serif;
	padding: 18px 10px !important;
	text-decoration: none !important;
	border: none !important;
	text-align: center !important;
	font-weight: 700 !important;
	font-size: 18px !important;
	width: 340px !important;
	border-radius: 25px !important;
	transition: 0.15s !important;
	cursor: pointer !important;
	z-index: 5 !important;
}

@media screen and (max-width: 909px) {
	#form #btnSend {
		bottom: 240px;
	}
}

#form #btnSend:hover {
	transform: scale(0.95);
}

#form .exampleFile {
	margin-top: 5px;
}

#form .exampleFile .btn-tertiary {
	padding: 9px 0;
	font-size: 14px;
}

#form .exampleFile .btn-tertiary2 {
	padding: 9px 0;
	font-size: 13px;
}

#form .exampleFile .btn-tertiary:hover {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 1279px) {
	.formSection {
		width: 100%;
	}
}

@media screen and (max-width: 759px) {
	.formSection .formSection__form {
		width: 90%;
	}

	.formSection .formSection__form .twoInput,
	.formSection .formSection__form .threeInput {
		display: block;
	}

	.formSection .formSection__form .twoInput input:nth-child(2),
	.formSection .formSection__form .twoInput select:nth-child(2) {
		margin-top: 10px;
	}
}

/* Checkbox */

.flex-checkbox {
	position: relative;
	z-index: 10;
	margin-top: 10px;
	margin-bottom: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	color: #fff !important;
}

.flex-checkbox a {
	text-decoration: underline !important;
}

.flex-checkbox label {
	margin-left: 10px;
	font-size: 10px;
	margin-top: 2px;
}

input[type='checkbox'] {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: 0;
	background: none;
	height: 16px;
	width: 16px;
	border: 1px solid #fff;
}

input[type='checkbox']:checked {
	background: #fff;
}

input[type='checkbox']:hover {
	filter: brightness(90%);
}

input[type='checkbox']:disabled {
	background: none;
	opacity: 0.6;
	pointer-events: none;
}

input[type='checkbox']:after {
	content: '';
	position: relative;
	left: 40%;
	top: 20%;
	width: 15%;
	height: 40%;
	border: 1px solid #fff;
	transform: rotate(45deg);
	display: none;
}

input[type='checkbox']:checked:after {
	display: block;
}

input[type='checkbox']:disabled:after {
	border-color: #7b7b7b;
}

/* == LOADER == */

#form .loader {
	display: none;
	padding: 50px 0;
	position: relative;
	color: #fff;
	text-align: center;
	font-size: 24px;
}

#loading-bar-spinner.spinner {
	left: 50%;
	margin-left: -20px;
	top: 50%;
	margin-top: -20px;
	position: absolute;
	z-index: 19 !important;
	-webkit-animation: loading-bar-spinner 350ms linear infinite;
	animation: loading-bar-spinner 350ms linear infinite;
}

#loading-bar-spinner.spinner .spinner-icon {
	width: 40px;
	height: 40px;
	border: solid 3px transparent;
	border-top-color: #fff !important;
	border-left-color: #fff !important;
	border-radius: 50%;
}

@-webkit-keyframes loading-bar-spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes loading-bar-spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*========== Extra info ==========*/

.mailIco {
	animation: shake 2.42s ease infinite;
}

.extraInfo {
	border: 2px solid #6a256a;
}

/*========== Top Header ==========*/

@media screen and (max-width: 909px) {
}

/*========== Animations ==========*/

@keyframes shake {
	0% {
		transform: translate(0, 0);
	}
	1.78571% {
		transform: translate(8px, 0);
	}
	5.57143% {
		transform: translate(0, 0);
	}
	9.35714% {
		transform: translate(8px, 0);
	}
	14.14286% {
		transform: translate(0, 0);
	}
	18.92857% {
		transform: translate(8px, 0);
	}
	25.71429% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(0, 0);
	}
}

.cta {
	border-radius: 8px;
	border: none;
	width: -moz-fit-content;
	width: fit-content;
	height: 42px;
	line-height: 42px;
	padding: 0 32px;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease-out;
	background: #0082fa;
	color: #fff;
	margin-top: 10px;
	z-index: 1;
	white-space: nowrap;
	flex-shrink: 0;
}
.cta[disabled] {
	filter: grayscale(100);
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	opacity: 0.5;
}
.cta:hover {
	background: #0067c7;
	color: #fff;
}
.cta--outline {
	border: 1px solid #0082fa;
	color: #0082fa;
	background: none;
}
.cta--outline:hover {
	background: #0082fa;
	color: #fff;
}
.cta--secondary {
	background: #0fd2ff;
	border: none;
	color: #fff;
}
.cta--secondary:hover {
	background: #00b2db;
	color: #fff;
}
.cta--secondary--outline {
	border: 1px solid #0fd2ff;
	color: #0fd2ff;
	background: none;
}
.cta--secondary--outline:hover {
	background: #0fd2ff;
	color: #fff;
}
.cta--white {
	background: #fff;
	color: #000;
}
.cta--white:hover {
	background: #ccc;
	color: #000;
}
.cta--white--outline {
	border: 1px solid #fff;
	color: #fff;
	background: none;
}
.cta--white--outline:hover {
	background: #fff;
	color: #000;
}
.cta--black {
	background: #222;
	color: #fff;
}
.cta--black:hover {
	background: #444;
	color: #fff;
}
.cta--black--outline {
	border: 1px solid #000;
	color: #000;
	background: none;
}
.cta--black--outline:hover {
	background: #000;
	color: #fff;
}
.cta--gray {
	background: #575757;
	color: #fff;
}
.cta--gray:hover {
	background: #3d3d3d;
	color: #fff;
}
.cta--gray--secondary {
	background: #f0f0f0;
	border: none;
	color: #666;
}
.cta--gray--secondary:hover {
	background: #e0e0e0;
	color: #333;
}
.cta--gray--outline {
	border: 1px solid #575757;
	color: #575757;
	background: none;
}
.cta--gray--outline:hover {
	background: #575757;
	color: #fff;
}
.cta--violet {
	background: #8250fa;
	color: #fff;
}
.cta--violet:hover {
	background: #5f1ef9;
	color: #fff;
}
.cta--violet--secondary {
	background: #ece5fe;
	border: none;
	color: #5f1ef9;
}
.cta--violet--secondary:hover {
	background: #ded1fe;
	border: none;
	color: #4606de;
}
.cta--violet--outline {
	border: 1px solid #8250fa;
	color: #8250fa;
	background: none;
}
.cta--violet--outline:hover {
	background: #8250fa;
	color: #fff;
}
.cta--pink {
	background: #fa0064;
	color: #fff;
}
.cta--pink:hover {
	background: #c70050;
	color: #fff;
}
.cta--pink--outline {
	border: 1px solid #fa0064;
	color: #fa0064;
	background: none;
}
.cta--pink--outline:hover {
	background: #fa0064;
	color: #fff;
}
.cta--pink--secondary {
	background: #ffe1ed;
	border: none;
	color: #c70050;
}
.cta--pink--secondary:hover {
	background: #ffd1e4;
	border: none;
	color: #c70050;
}
.cta--blue {
	background: #0fd2ff;
	color: #fff;
}
.cta--blue:hover {
	background: #00b2db;
	color: #fff;
}
.cta--blue--outline {
	border: 1px solid #0fd2ff;
	color: #0fd2ff;
	background: none;
}
.cta--blue--outline:hover {
	background: #0fd2ff;
	color: #fff;
}
.cta--big {
	height: 48px;
	line-height: 48px;
	padding: 0 34px;
	font-size: 1.1rem;
}
.cta--medium {
	height: 40px;
	line-height: 40px;
	font-size: 1rem;
}
.cta--small {
	height: 40px;
	padding: 0 24px;
	font-size: 0.95rem;
}
.cta--circle {
	padding: 0;
	height: 44px;
	width: 44px;
}

.grid-change {
	grid-column-start: 2;
}

@media (max-width: 1023px) {
	.grid-change {
		grid-column-start: auto;
	}
}
