/*!************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/base.css ***!
  \************************************************************************************************/
/* Roboto Font */
/* roboto-regular - latin */
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: local(''),
			 url('./fonts/roboto-v29-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
			 url('./fonts/roboto-v29-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}

/* roboto-700 - latin */
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: local(''),
			 url('./fonts/roboto-v29-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
			 url('./fonts/roboto-v29-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}

/* Material Icons */
/* fallback */
@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: url('./fonts/material-icons.woff2') format('woff2');
	font-display: swap;
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-moz-font-feature-settings: 'liga';
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: 'Roboto', sans-serif;
	margin: 0;
}

.noscript {
	color: white;
	font-size: 20px;
	text-align: center;
	display: block;
	margin-inline: auto;
	z-index: 999;
	position: relative;
}

.no-scroll {
	overflow: hidden;
}

.box-shadow {
	box-shadow: 0 5px 14px 0 #000a;
}

.unselectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.hidden {
	visibility: hidden;
}

/*!******************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/background.css ***!
  \******************************************************************************************************/
.bg {
	width: 100%;
	height: 100vh;
	z-index: -10;
	position: fixed;
	top: 0px;
	left: 0px;
	overflow: hidden;
	filter: blur(0.75px);
}

.bg-boxes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.bg-boxes div {
	position: absolute;
	display: block;
	animation: spin-left 5s linear;
	bottom: -150px;
	border-radius: 10%;
	background-size: 1000% 100%;
	background-image: linear-gradient(var(--fader, 90deg), #fff0 10%, #fff2 30%, #fff8 40%, #fff8 60%, #fff2 70%, #fff0 90%);
}

.bg-boxes div.black {
	background-image: linear-gradient(var(--fader, 90deg), #0000 10%, #0002 30%, #0005 40%, #0005 60%, #0002 70%, #0000 90%);
}

@keyframes spin-left {
	0% {
		transform: translateX(0);
		background-position: 100% 0%;
	}
	100% {
		transform: translateX(var(--movex, -300px));
		background-position: 0% 0%;
	}
}

@keyframes spin-right {
	0% {
		transform: translateX(0);
		background-position: 0% 0%;
	}
	100% {
		transform: translateX(var(--movex, 300px));
		background-position: 100% 0%;
	}
}

/*!************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/skin.css ***!
  \************************************************************************************************/
html {
	background: linear-gradient(90deg, #52678a, #acbfd3, #8294b1);
}

header {
	position: sticky;
	top: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	background: #dd6516;
	z-index: 10000;
	border-bottom: 2px solid white;
}

header > h1 {
	padding: 10px;
	margin: 0;
	padding: 10px;
	color: white;
}

header > span {
	margin: auto 20px auto 0;
}

header > span > li {
	list-style: none;
	display:inline-block;
	margin: 0 10px;
	transition: 0.2s;
}

header > span > li > a {
	color: white;
	text-decoration: none;
	padding: 9px;
	background: white;
	color: black;
	border-radius: 5px;
	transition: 0.2s;
	border: 3px solid white;
	font-weight: bold;
	letter-spacing: 0.3px;
	font-kerning: none;
	text-transform: uppercase;
	font-size: 17px;
}

header > span > li > a:hover {
	background: #dd6516;
	border: 3px solid white;
	color: white;
}

.gen {
	margin-top: 50px;
}

.title {
	color: white;
	width: 80%;
	margin: 0 auto;
	font-size: 25px;
	text-align: center;
}

.share {
	width: 80%;
	max-width: 1220px;
	min-width: 750px;
	margin: auto;
	display: flex;
	flex-wrap: nowrap;
}

.share > button {
	width: 290px;
	font-size: 17px;
	text-transform: uppercase;
	background: #dd6516;
	border: none;
	border-radius: 5px;
	margin-top: 5px;
	color: white;
	padding: 8px;
	transition: ease 50ms;
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	letter-spacing: 0.3px;
	font-kerning: none;
}

.share > button > span {
	font-size: 17px;
	margin: auto 0;
}

.share > button:hover {
	cursor: pointer;
	outline: 2px solid white;
}

.share > button:active {
	transform: scale(0.95);
}

/*
	old try
.share_buttons {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	max-width: 290px;
	transform: translate(-50%, -50%);
	flex-wrap: wrap;
	z-index: 100;
}
*/

.share_buttons {
	display: none;

}

.share_buttons > button {
	width: 144px;
	font-size: 17px;
	text-transform: uppercase;
	background: white;
	border: none;
	border-radius: 5px;
	margin-top: 5px;
	color: black;
	padding: 8px;
	transition: ease 50ms;
	margin-left: 7px;
	animation: vis 0.2s;
	transform: scale(0);
	animation-fill-mode: forwards;
	transform-origin: 0% 100%;
	letter-spacing: 0.3px;
	font-kerning: none;
}

.share_buttons > button:nth-child(2) {
	animation-delay: 200ms;
}

.share_buttons > button:nth-child(3) {
	animation-delay: 400ms;
}

@keyframes vis {
	from {-webkit-transform:scale(0);}
    to {-webkit-transform:scale(1);}
}

.share_buttons > button:hover {
	cursor: pointer;
	outline: 2px solid white;
	background: #dd6516;
	color: white;
	font-weight: bold;
}

.share_buttons > button:nth-child(2):hover {
	background: #1DA1F2;
	color: white;
}

.share_buttons > button:nth-child(3):hover {
	background: #3b5998;
	color: white;
}

.crosshair_generator {
	margin: auto auto;
	width: 80%;
	max-width: 1220px;
	min-width: 750px;
	font-weight: bold;
	letter-spacing: 0.3px;
	font-kerning: none;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.marginfixleft {
	margin-left: 0 !important
}

.marginfixright {
	margin-right: 0 !important
}

.settings {
	width: 80%;
}

.settings > div {
	width: 100%;
	border-radius: 5px;
	display: flex;
	margin: 4px;
}

.settings > div > div {
	width: 30%;
	margin-left: 4px;
}

.settings > div::before {
	content: attr(data-name);
	border-radius: 5px;
	width: 70%;
	color: lightgray;
	padding: 7px 0 7px 14px;
	text-transform: uppercase;
}

.settings > div:first-child {
	margin-top: 0;
}

.settings > div:last-child {
	margin-bottom: 0;
}

.x-hair-drop-content {
	background: #fffd;
	border-radius: 5px;
	width: 100%;
	height: 100%;
	border: none;
}

.x-hair-drop-content:hover {
	background: #fffb;
	cursor: pointer;
}

.x-hair-toggle > button {
	width: 100%;
	height: 100%;
}

#builderRender {
	width: 290px;
	min-width: 290px;
	background: #223b;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* slider style */
.x-hair-slider {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	border-radius: 5px;
}

.x-hair-slider > p {
	margin: 0 5px;
	text-align: center;
}

.x-hair-slider > input[type="range"] {
	width: 60%;
}

.settings > div[spaced]::before,
.settings > div:not([spaced]) {
	background: #223b;
}

input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
	background: rgba(94, 94, 94, 0.9);
	height: 0.5rem;
	border-radius: 10px;
}

input[type="range"]::-moz-range-track {
	background: rgba(94, 94, 94, 0.9);
	height: 0.5rem;
	border-radius: 10px;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	margin-top: -6px;
	background-color: white;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	border: none;
}

input[type="range"]::-moz-range-thumb {
	-webkit-appearance: none;
	appearance: none;
	margin-top: -12px;
	background-color: white;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	border: none;
}

input[type="range"]:active::-moz-range-thumb {
	background-color: #d9d9d9;
}

input[type="range"]:active::-webkit-slider-thumb {
	background-color: #d9d9d9;
}

input[type="range"]::-moz-range-progress {
	background-color: #8ce8ff;
	height: 0.5rem;
	border-radius: 10px;
}

input[type="text"] {
	background: transparent;
	border: none;
	width: 50px;
	color: white;
	font-size: 17px;
	height: 20px;
	text-align: center;
	font-family: Roboto, sans-serif;
	transition: ease all 0.2s;
	border-radius: 3px;
	outline: 1px solid #fff0
}

input[type="text"]:focus {
	outline: 1px solid white;
}

input[type="text"]:hover {
	outline: 1px solid white;
}

/* crosshair showcase */
.crosshair_showcase {
	max-width: 1220px;
	width: 80%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.showcase {
	width: 264px;
	height: 264px;
	margin: 15px;
	border-radius: 5px;
	background: #223b;
	-webkit-transform:scale(1);
	transform:scale(1);
	outline: 3px solid #223b;
	transition: 0.1s ease;
}

.showcase:hover {
	cursor: pointer;
	outline: 3px solid #dd6516;
}

.showcase > canvas {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.showcase > img {
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	transition: 0.1s ease;
}

@keyframes kwke {
	0%   {-webkit-transform:scale(1);}
    50% {-webkit-transform:scale(1.02);}
}

/* x-hair-color */
.x-hair-color-btn {
  	background-color: #fffd;
  	color: black;
  	font-size: 22px;
  	border: none;
  	width: 100%;
  	height: 100%;
  	border-radius: 5px;
}

.x-hair-color-btn:hover {
	background-color: #fffb;
	cursor: pointer;
}

.x-hair-color {
  	position: relative;
  	display: inline-block;
}

.x-hair-color > button > p {
	height: 20px;
 	color: black;
 	text-decoration: none;
  	display: block;
  	padding: 0;
	border: 1px solid black;
	border-radius: 3px;
	z-index: 10;
	margin: 0 10px;
}

.x-hair-color-content {
  	display: none;
  	position: absolute;
  	background-color: #f1f1f1;
  	min-width: 100%;
  	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  	border-radius: 3px;
  	border: 1px solid black;
  	z-index: 1;
  	padding: 0;
  	margin: 0px;
}

.x-hair-color-content p {
	height: 20px;
 	color: black;
 	text-decoration: none;
  	display: block;
  	padding: 0;
	border: 1px solid black;
	border-radius: 3px;
	z-index: 10;
	margin: 0 10px;
}

.x-hair-color-content > div {
	padding: 7px 9px;
	border-radius: 3px;
	margin: 2px;
	transition: ease 0.2s;
}

.x-hair-color-content > div:hover {
	background: grey;
	cursor: pointer;
}

.x-hair-color-content p:hover {background-color: #ddd;}

.x-hair-colo:hover .x-hair-color-content {display: block;}

.x-hair-colo:hover .x-hair-color-btn {background-color: #fff;}

/*!***************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/counter.css ***!
  \***************************************************************************************************/
.all_heroes {
	max-width: 1412px;
	margin: 0 auto;
	display: flex;
}

.class {
	margin: 0 10px;
}

.class > h1 {
	color: white;
	margin: 5px 15px;
	text-transform: uppercase;
	font-weight: bold;
	font-kerning: none;
	letter-spacing: 0.3px;
	font-size: 25px;
	text-align: center;
}

.class > div {
	display: flex;
	flex-wrap: wrap;
}

.Tank,
.Sup {
	max-width: 372px;
}

.DPS {
	max-width: 620px;
}

.DPS_flex {
	justify-content: center;
}

.Tank_flex {
	justify-content: flex-end;
}

.Sup_flex {
	justify-content: flex-start;
}

.hero_frame {
	width: 100px;
	outline: 3px solid white;
	border-radius: 5px;
	background: linear-gradient(90deg, #52678a, #acbfd3, #8294b1);
	margin: 5px;
	transition: ease all 0.2s;
}

.hero_frame:active {
	transform: scale(0.95);
}

.hero_frame:hover {
	outline: 3px solid #dd6516;
	cursor: pointer;
}

.hero_frame:hover > p {
	background: #dd6516;
	color: white;
}

.select {
	outline: 3px solid #dd6516;
}

.select > p {
	background: #dd6516 !important;
	color: white !important;
}

.hero_frame > img {
	position: relative;
	margin: 0 auto;
	display: flex;
	width: 100px;
	height: 100px;
	border-radius: 5px;
}

.hero_frame > p {
	color: black;
	background: white;
	text-align: center;
	padding: 5px;
	margin: 0;
	text-transform: uppercase;
	white-space: nowrap;
	font-weight: bold;
	font-kerning: none;
	font-size: 11px;
	letter-spacing: 0.3px;
	transition: ease all 0.2s;
}

.get_countered {
	margin: 0 auto;
	display: flex;
	position: relative;
}

.countered_by {
	display: flex;
}

.countered_by > span {
	color: #dd6516;
	margin: auto 10px;
	font-size: 60px;
	text-align: right;
	font-weight: bold;
}

.cou {
	max-width: 630px;
	margin: 20px auto;
}

.title_Name > p {
	color: white;
	background: #223b;
	margin:0;
	padding: 5px 0 5px 10px;
	border-radius: 5px;
	text-transform: uppercase;
	white-space: nowrap;
	font-weight: bold;
	font-kerning: none;
	font-size: 20px;
	letter-spacing: 0.3px;
	transition: ease all 0.2s;
}

.counter_text {
	background: #223b;
	color: white;
	padding: 5px 30px;
	margin: 5px 0;
	border-radius: 5px;
	font-size: 18px;
}

.counter_text > h2 {
	text-transform: uppercase;
	padding: 0;
	margin-bottom: 0;
}

.counter_text > h6 {
	text-transform: uppercase;
	padding: 0;
	margin: 0;
}

/*!*************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./src/css/teamc.css ***!
  \*************************************************************************************************/
.mode {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.modeS {
	border: 1px solid white;
	border-radius: 5px;
	margin: 20px;
}

.modeS > h1 {
	color: black;
	padding: 20px;
	background: white;
	margin: 0;
}


/*# sourceMappingURL=2.f2103c923e9c24fe5dc0.css.map*/