/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
	font-family: 'BB';
	src: url('../fonts/bbf.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
/*--------------------------------------------------------------
# Basics
--------------------------------------------------------------*/
body {
	overflow-x: hidden;
	min-height: 100vh;
}
html {
	overflow-y: scroll;
	overflow-x: hidden;
}
ul {
	list-style: none;
}
textarea, input, a, button { 
	outline: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
	font-family: 'BB';
	font-size: 16px;
	color: #333;
}
a {
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
a:hover, a:visited, a:focus, a:active, button:hover, button:visited, button:active, button:focus; {
	text-decoration: none !important;
	outline: none !important;
}
::selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
.animation-delay-100 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.animation-delay-200 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.animation-delay-300 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.animation-delay-400 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.animation-delay-600 {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.animation-delay-800 {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.animation-delay-1000 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.animation-delay-1200 {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}
.animation-delay-1400 {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}
.animation-delay-1600 {
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
}
.animation-delay-1800 {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}
.animation-delay-2000 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
body {
	background: #151718;
}


.header {
	position: relative;
	padding: 15px 0 10px 0;
	z-index: 10;
}

.header::after,
.header::before {
    z-index: -1;
}

.status-wrapper {
	margin: 0 auto 20px auto;
	padding: 0 10px 5px 0;
	text-align: center;
}
.status-content {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	max-width: 600px;
}
.status-item {
	display: inline-block;
	width: 33.333%;
	flex: 0 0 33.333%;
	position: relative;
	margin: 0 10px;
}
.status-m {
	width: 100%;
	display: flex;
}

.status-item div {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 3;
}
.status-icon {
	filter: invert(87%) sepia(91%) saturate(522%) hue-rotate(79deg) brightness(109%) contrast(98%);
	margin-right: 7px;
	width: 20px;
	position: relative;
	top: -2px;
}
.status-dynamic {
	color: #fff;
	font-size: 0.9em;
	text-transform: uppercase;
}
.logo-wrapper {
	position: relative;
	text-align: center;
}
.logo {
	display: table;
	margin: 10px auto 0 auto;
	max-width: 120px;
}
.h-title {
	text-align: center;
	font-size: 1.8em;
	text-transform: uppercase;
	color: #29fcc6;
	margin: 15px auto 0 auto;
}
.skin-select-wrapper {
	position: relative;
	min-height: 90vh;
	padding-top: 100px;
	/* clip-path: polygon(0% 0%, 51% 3%, 43% 14%, 82% 6%, 100% 3%, 100% 100%, 0% 100%); */
	background: #333;
	z-index: 1;
}
.skin-select-container {
	text-align: center;
	position: relative;
	z-index: 25;
	margin: 0 auto 0 auto;
	display: flex;
	flex-wrap: wrap;
	width: 90%;
}
.skin-select-col {
    padding: 0 15px;
    width: 10%;
    flex: 0 0 10%;
	margin-bottom: 30px;
}
.skin-select-col-c {
	position: relative;
}
.skin-select-img-w {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 0 0 8px #242424;
}
.skin-select-img {
    transition: transform 0.3s ease-in-out; /* Apply transition to both hover and normal state */
}

.skin-select-col-c:hover .skin-select-img {
    transform: scale(1.1); /* Adjust scale value as needed */
    transform-origin: center center; /* Optional: adjust this to change the zoom origin */
}
.skin-select-name-w {
	position: absolute;
	text-align: center;
	min-width: 100%;
	left: 0;
	top: -40px;
}
.skin-select-name {
	background: #fff;
	margin: 0 auto;
	display: table;	
	line-height: 1;
	padding: 8px 12px 6px 12px;
	border-radius: 8px;
}
.skin-select-button-w {
	position: absolute;
	text-align: center;
	min-width: 100%;
	left: 0;
	bottom: -30px;
}
.skin-select-button {
    outline: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    max-width: 120px;
	padding-top: 3px;
    height: 45px;
	background: #29fcc6;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
	letter-spacing: 1px;
    border: 0 solid transparent;
    -webkit-box-shadow: 0 4px 9px 0 rgba(0,0,0,.21);
    box-shadow: 0 4px 9px 0 rgba(0,0,0,.21);
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    -webkit-clip-path: polygon(0 0,100% 2%,97% 98%,2% 100%);
    clip-path: polygon(0 0,100% 2%,97% 98%,2% 100%);
    -webkit-transition: color 0.3s ease-in-out,-webkit-clip-path 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,-webkit-clip-path 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out,clip-path 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,clip-path 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,clip-path 0.3s ease-in-out,-webkit-clip-path 0.3s ease-in-out;
    font-size: 19px;
	position: relative;
	z-index: 10;
	margin: 0 auto;
}
.skin-select-name-w, .skin-select-button-w {
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition for fade-in and movement */
	z-index: 2;
}
.skin-select-name-w {
    transform: translateY(10px); /* Initial position slightly up */
}
.skin-select-button-w {
    transform: translateY(-10px); /* Initial position slightly down */
}
.skin-select-col-c:hover .skin-select-name-w, .skin-select-col-c:hover .skin-select-button-w {
    opacity: 1; /* Fade in on hover */
    transform: translateY(0); /* Move to final position on hover */
}
.skin-select-header {
	text-align: center;
	margin: 0 0 30px 0;
}
.ss-h-order {
	-webkit-clip-path: polygon(0 0,100% 2%,97% 98%,2% 100%);
    clip-path: polygon(0 0,100% 2%,97% 98%,2% 100%);
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
	font-size: 2.2em;
	background: #29fcc6;
	display: table;
	margin: 0 auto 10px auto;
	color: #fff;
	width: 60px;
	padding-top: 6px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ss-h-title {
	color: #fff;
	font-size: 2.8em;
	text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}
.col-np {
	padding: 0;
}
.row-nm {
	margin: 0;
}
.skin-tool-content-wrapper {
	padding: 80px 80px 50px 80px;
	position: relative;
}
.skin-tool-holder {
	max-width: 900px;
	margin: 0 auto;
	background: #333;
	-webkit-clip-path: polygon(0 0,100% 2%,97% 98%,2% 98%);
    clip-path: polygon(0 0,100% 2%,97% 98%,2% 98%);
}
.skin-tool-overview-wrapper {
	position: relative;
}
.close-modal-btn {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	line-height: 1;
	font-size: 1.2em;
	font-weight: 700;
	padding-top: 6px;
	z-index: 5;
	transform: scale(0.9);
	-webkit-transition: all 400ms cubic-bezier(0.225, 3, 0.485, 0.895);
	transition: all 400ms cubic-bezier(0.225, 3, 0.485, 0.895);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.close-modal-btn:hover {
	transform: scale(1);
}
.skin-overview-video {
	width: 100%;
}
.skin-tool-overview-name-w {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 30px;
}
.skin-tool-overview-name {
	background: #fff;
	margin: 0 auto;
	display: table;	
	line-height: 1;
	font-size: 1.2em;
	padding: 8px 12px 6px 12px;
	border-radius: 8px;
}
.skin-tool-btn-wrapper {
	position: relative;
}
.skin-tool-btn {
	font-size: 2.8em;
	font-style: italic;
	color: #000;
	display: block;
	text-transform: uppercase;
	line-height: 1;
	max-width: 250px;
	margin: 0 auto;
	padding: 35px 0 12px 0;
	text-align: center;
	position: relative;
	cursor: pointer;
}
.skin-tool-btn span {
	position: relative;
	z-index: 10;
}
.skin-tool-btn:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 400ms cubic-bezier(0.225, 3, 0.485, 0.895);
	transition: all 400ms cubic-bezier(0.225, 3, 0.485, 0.895);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #f7ff18;
    clip-path: polygon(0% 16%, 100% 6%, 98% 100%, 2% 90%);
	z-index: 1;
}
.skin-tool-btn:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 400ms cubic-bezier(0.225, 3, 0.485, 0.895);
	transition: all 400ms cubic-bezier(0.225, 3, 0.485, 0.895);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #dde411;
	transform: scale(0.92);
	z-index: 2;
    clip-path: polygon(0% 20%, 100% 7%, 95% 100%, 4% 90%);
}
.skin-tool-btn:hover {
	color: #000;
}
.skin-tool-title {
	position: relative;
	margin: 0 auto 30px auto;
	text-align: center;
}
.skin-tool-title h3 {
	font-size: 2.4em;
	color: #bbfaff;
	text-transform: uppercase;	
	margin: 0;
	line-height: 1;
}
.field-row {
	position: relative;
}
.input-field-wrapper {
	position: relative;
}
.username-field-wrapper {
	position: relative;
	border-radius: 10px;
}
.username-field-wrapper:before {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #242424;
	clip-path: polygon(0% 7%, 100% 4%, 98% 100%, 2% 95%);
	z-index: -1;
}
.input-field-wrapper .player-icon-img {
	position: absolute;
	left: 20px;
	top: 25px;
	max-width: 48px;
}
.field-input {
	background: transparent;
	border: none;
	box-shadow: none;
	width: 100%;
	outline: none;
	height: 90px;
	color: #fff;
	padding: 9px 15px 0 83px;
	font-size: 1.6em;
}
.field-input::-webkit-input-placeholder {
	color: #fff;
}
.field-input:-moz-placeholder {
	color: #fff;
	opacity:  1;
}
.field-input::-moz-placeholder {
	color: #fff;
	opacity:  1;
}
.field-input:-ms-input-placeholder {
	color: #fff;
}
.f-field-w {
	position: relative;
}
.platform-field-row {
	margin: 30px auto 0 auto;
}
.hidden-input {
	display: none;
}
.platform-field-wrapper {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}
.platform-item-wrapper {
	width: 33.333%;
	flex: 0 0 33.333%;
	padding: 0 5px;
}
.platform-item {
	height: 75px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8em;
	position: relative;
	cursor: pointer;
	color: #fff;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	margin-bottom: 10px;
}
.platform-item:before {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #242424;
	clip-path: polygon(0% 12%, 100% 6%, 98% 100%, 2% 92%);
	z-index: -1;
	transform: scale(0.86);
}
.platform-item:after {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #111;
	clip-path: polygon(0% 12%, 100% 6%, 98% 100%, 2% 92%);
	z-index: -2;
}
.platform-item:hover::before {
	background: #303030;
}
.platform-item.active {
	color: #fff;
}
.platform-item.active:before {
	background: #29fcc6;
}
.platform-item.active:after {
	background: #fff;
}
.error-wrapper {
	color: #fc4349;
	font-size: 0.9em;
	text-align: center;
	position: absolute;
	width: 100%;
	display: none;
	left: 0;
	text-transform: uppercase;
	bottom: -25px;
}
.three-body {
	 --uib-size: 120px;
	 --uib-speed: 0.8s;
	 --uib-color: #29fcc6;
	 position: relative;
	 display: inline-block;
	 height: var(--uib-size);
	 width: var(--uib-size);
	 animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
}
.three-body__dot {
	 position: absolute;
	 height: 100%;
	 width: 30%;
}
.three-body__dot:after {
	 content: '';
	 position: absolute;
	 height: 0%;
	 width: 100%;
	 padding-bottom: 100%;
	 background-color: var(--uib-color);
	 border-radius: 50%;
}
.three-body__dot:nth-child(1) {
 bottom: 5%;
 left: 0;
 transform: rotate(60deg);
 transform-origin: 50% 85%;
}

.three-body__dot:nth-child(1)::after {
 bottom: 0;
 left: 0;
 animation: wobble1 var(--uib-speed) infinite ease-in-out;
 animation-delay: calc(var(--uib-speed) * -0.3);
}

.three-body__dot:nth-child(2) {
 bottom: 5%;
 right: 0;
 transform: rotate(-60deg);
 transform-origin: 50% 85%;
}

.three-body__dot:nth-child(2)::after {
 bottom: 0;
 left: 0;
 animation: wobble1 var(--uib-speed) infinite
    calc(var(--uib-speed) * -0.15) ease-in-out;
}

.three-body__dot:nth-child(3) {
 bottom: -5%;
 left: 0;
 transform: translateX(116.666%);
}

.three-body__dot:nth-child(3)::after {
 top: 0;
 left: 0;
 animation: wobble2 var(--uib-speed) infinite ease-in-out;
}

@keyframes spin78236 {
 0% {
  transform: rotate(0deg);
 }

 100% {
  transform: rotate(360deg);
 }
}

@keyframes wobble1 {
 0%,
  100% {
  transform: translateY(0%) scale(1);
  opacity: 1;
 }

 50% {
  transform: translateY(-66%) scale(0.65);
  opacity: 0.8;
 }
}

@keyframes wobble2 {
 0%,
  100% {
  transform: translateY(0%) scale(1);
  opacity: 1;
 }

 50% {
  transform: translateY(66%) scale(0.65);
  opacity: 0.8;
 }
}
.skin-tool-btn-wrapper-step {
	margin: 25px auto 0 auto;
}
.skin-tool-one-p, .skin-tool-one-s {
	display: none;
}
.skin-tool-one-s {
	min-height: 300px;
	display: none;
	padding-top: 40px;
	text-align: center;
}
.skin-tool-one-s .searching-player-msg {
	font-size: 1.6em;
	color: #fff;
	margin-top: 30px;
}
.skin-tool-content-wrapper.stcw-ps {
	padding: 80px 40px 50px 40px;
}
.player-stats-content {
	position: relative;
	padding: 0 30px 30px 30px;
}
.player-stats-content:before {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #242424;
	clip-path: polygon(0% 7%, 100% 4%, 98% 100%, 2% 95%);
}
.player-stats-top {
	flex-wrap: wrap;
	color: #fff;
	position: relative;
	margin-bottom: 8px;
	padding-bottom: 5px;
	text-align: center;
	border-bottom: 5px solid #191919;
}
.player-icon-img-stats {
	max-width: 45px;
	margin: 0 auto 10px auto;
	display: table;
}
.player-username {
	position: relative;
	display: table;
}
.acc-priv-msg {
	font-size: 1.2em;
    color: #fff;
    position: relative;
    z-index: 5;
    color: #aaa;
    text-align: center;
    margin-top: 30px;
}
#stats-username {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	color: #fff;
}
.stats-username {
	font-size: 2.4em;
	text-transform: uppercase;
	line-height: 1;
}
.player-stats-solo-h {
	clip-path: polygon(0% 20%, 100% 7%, 95% 100%, 4% 90%);
	color: #fff;
	font-size: 0.9em;
	padding: 9px 15px 2px 15px;
	display: table;
	margin: 0 auto 11px auto;
	background: #29fcc6;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
.player-stats-bottom {
	display: flex;
	margin: 0 -10px;
	flex-wrap: wrap;
}
.ps-row-w {
	padding: 0 10px;
	width: 50%;
	flex: 0 0 50%;
}
.psr  {
	display: flex;
	align-items: center;
	position: relative;
	margin: 0 0 12px 0;
}
.psr:first-child {
	padding-top: 0;
}
.psr-img {
	max-width: 30px;
	margin-right: 6px;
	position: relative;
}
.psr-label {
	display: table;
	left: 0;
	margin-right: 5px;
	line-height: 1;
}
.psr-label span {
	color: #ccc;
	font-size: 1em;
	position: relative;
	text-transform: uppercase;
}
.psr-val {
	font-size: 1.6em;
	color: #fff;
	position: relative;
	line-height: 1;
}
.stcw-sw {
	max-width: 470px;
}
.console-proccess-wrapper {
	position: relative;
	margin: 0 auto;
}
.skin-tool-panel-wrapper-console {
	padding-bottom: 0;
}
.console-proccess-msg-wrapper {
	position: relative;
	margin: 0 auto;
	min-height: 120px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}
.console-proccess-msg {
	font-size: 1.4em;
	color: #ccc;
	line-height: 1.4;
	position: relative;
}
.console-proccess-skin-msg-val, .console-proccess-u-msg-val {
	color: #fff;
}
.console-proccess-vb-wrapper {
	position: relative;
	max-width: 450px;
	margin: 0 auto 30px auto;
	text-align: center;
	padding: 40px 20px 30px 20px;
}
.console-proccess-vb-wrapper:before {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #242424;
	z-index: -1;
	clip-path: polygon(0% 7%, 100% 4%, 98% 100%, 2% 95%);
}
.console-proccess-vb-wrapper.completed:before {
	background: #f7ff18;
}
.console-skin-img {
	max-width: 150px;
	border-radius: 10px;
	box-shadow: 0 0 0 7px #111;
}
.console-skin-name {
	background: #fff;
    margin: 0 auto;
    display: table;
    line-height: 1;
    padding: 8px 12px 6px 12px;
    border-radius: 8px;
	position: relative;
	top: -5px;
	z-index: 3;
}
.unlocked .console-skin-img {
	box-shadow: 0 0 0 7px #29fcc6;
}
.console-proccess-loadbar {
	display: block;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	z-index: 5;
	overflow: hidden;
	clip-path: polygon(0% 10%, 100% 4%, 98% 100%, 2% 93%);
	max-width: 200px;
	margin: 15px auto 0 auto;
}
.console-proccess-loadbar div {
	font-size: 12px;
	text-indent: 9999px;
	overflow: hidden;
	background: #f7ff18;
}
.unlocked .console-proccess-loadbar div {
	background: #29fcc6;
}
.validation-content p {
	font-size: 1.2em;
	text-align: center;
	color: #ccc;
}
#v-username, #v-skin {
	color: #fff;
}
.validate-item-img {
	max-width: 100px;
	border-radius: 10px;
	box-shadow: 0 0 0 7px #29fcc6;
}
.validate-item-skin {
	background: #fff;
    margin: 0 auto;
    display: table;
    line-height: 1;
    padding: 8px 12px 6px 12px;
    border-radius: 8px;
	position: relative;
	top: -5px;
	z-index: 3;
	text-align: center;
}
.verification-amount-item-wrapper {
	max-width: 270px;
	margin: 20px auto;
}
.validate-item-img {
	display: table;
	max-width: 80px;
	margin: 0 auto;
}
.h-v-time-left-wrapper {
	margin: 0 0 10px 0;
	color: #fff;
	line-height: 1;
	text-align: center;
	font-size: 0.9em;
}
#human_verification_timer_time {
	display: block;
	color: #f7ff18;
	text-shadow: none;
}
.validation-content .amount-item-wrapper {
	position: relative;
	max-width: 450px;
	margin: 0 auto 30px auto;
	text-align: center;
	padding: 40px 20px 30px 20px;
}
.validation-content .amount-item-wrapper:before {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #242424;
	z-index: -1;
	clip-path: polygon(0% 7%, 100% 4%, 98% 100%, 2% 95%);
}
.validation-content .amount-item-wrapper .validate-item-amount, .validation-content .amount-item-wrapper .validate-item-label {
	color: #000;
}
#verification-button {
	font-size: 2em;
    padding-top: 27px;
	text-decoration: none !important;
}
.success-content .main-button {
	margin: 0 auto;
}
.skin-tool-main-wrapper {
	position: relative;
	z-index: 50;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (min-width: 1920px) {
	body {
		overflow: hidden;
	}
}
@media screen and (max-width: 1280px) {
	.logo {
		max-width: 350px;
	}
	.c-container h1 {
		font-size: 5em;
	}
	.amount-item-wrapper {
		padding: 20px 15px 15px 15px;
	}
	.amount-img {
		max-width: 80px;
	}
	.amount-val {
		font-size: 3.4em;
	}
	#console-vb-img {
		max-width: 80px;
	}
}
@media screen and (max-width: 993px) {
	.status-dynamic {
		font-size: 1em;
	}
	.success-content {
		padding: 30px 20px;
	}
	.c-container h1 {
		font-size: 4em;
	}
	.success-content h3 {
		font-size: 1em;
	}
	.skin-select-col {
		width: 25%;
		flex: 0 0 25%;
	}
}
@media screen and (max-width: 575px) {
	.skin-select-wrapper {
		padding-top: 100px;
		/* clip-path: polygon(0% 0%, 51% 3%, 43% 5%, 39% 6%, 100% 3%, 100% 100%, 0% 100%); */
	}
	.c-container-wrapper {
		clip-path: polygon(0% 0%, 50% 2%, 45% 4%, 82% 5%, 100% 5%, 100% 100%, 0% 100%);
	}
	.status-item.row-second {
		display: none;
	}
	.status-m {
		margin: 0;
	}
	.status-item {
		width: 50%;
	}
	.logo {
		max-width: 130px;
	}
	.ss-h-order {
		width: 50px;
		height: 50px;
	}
	.ss-h-title {
		font-size: 2.2em;
	}
	.skin-select-col {
		width: 50%;
		flex: 0 0 50%;
	}
	.skin-tool-btn {
		width: 90%;
		font-size: 2.2em;
		padding: 34px 0 16px 0;
	}
	#verification-button.skin-tool-btn {
		font-size: 1.8em;
	}
	.skin-tool-panel-wrapper {
		padding: 0;
		max-width: 100% !important;
	}
	.skin-tool-content-wrapper {
		padding: 30px 30px 50px 30px;
		position: relative;
	}
	.skin-tool-content-wrapper.stcw-ps {
		padding: 20px 20px 50px 20px;
	}
	.skin-tool-content-wrapper .skin-tool-title {
		margin-bottom: 20px;
	}
	.mfp-bg {
		background: #333 !important;
		opacity: 1;
	}
	.skin-tool-overview-name-w {
		bottom: auto;
		top: 20px;
	}
	.skin-tool-content-wrapper {
		margin-top:-200px;
		background: #333;
		min-height: 500px;
	}
	.console-proccess-vb-wrapper {
		padding-bottom: 40px;
	}
	.skin-tool-title h3 {
		font-size: 1.8em;
	}
	.skin-tool-title-ms {
		margin-bottom: 15px;
	}
	.field-row-label {
		font-size: 1.2em;
	}
	.field-input {
		font-size: 1.4em;
	}
	.platform-item {
		font-size: 1.8em;
	}
	.amount-img {
		max-width: 65px;
	}
	.amount-val {
		font-size: 2em;
	}
	.validate-item-img {
		max-width: 60px;
	}
	.console-proccess-msg {
		font-size: 1.4em;
	}
	.console-proccess-vb-wrapper-value {
		font-size: 3em;
	}
	.validation-content p {
		font-size: 0.9em;
	}
	.field-input {
		height: 90px;
	}
	.input-field-wrapper .player-icon-img {
		top: 25px;
	}
	.stats-username {
		font-size: 1.4em;
	}
	.skin-select-header {
		margin-bottom: 40px;
	}
	.psr-label {
		font-size: 0.9em;
	}
	.psr-val {
		font-size: 1.2em;
	}
	.player-stats-top {
		border-bottom: 3px solid #191919;
	}
	.mfp-container {
		padding-left: 0;
		padding-right: 0;
	}
	.skin-tool-holder {
		clip-path: none;
		-webkit-clip-path: none;		
	}
	.psr-img {
		max-width: 25px;
	}
	.acc-priv-msg {
		margin-top: 10px;
	}
	.stcw-sw .skin-tool-content-wrapper {
		margin-top: 0;
	}
	.skin-select-name-w {
		transform: translateY(0); /* Initial position slightly up */
	}
	.skin-select-button-w {
		transform: translateY(0); /* Initial position slightly down */
	}
	.skin-select-col-c:hover .skin-select-name-w {
		opacity: 1; /* Fade in on hover */
		transform: translateY(30px); /* Move to final position on hover */
	}
	 .skin-select-col-c:hover .skin-select-button-w {
		opacity: 1; /* Fade in on hover */
		transform: translateY(-30px); /* Move to final position on hover */
	 }
}
@media screen and (max-width: 320px) {
	
}	