/*
* wBiza Dev Tools
* (c) 2021 Sendi Pratama
*/
@charset "ISO-8859-1";
@import "../fonts/fontawesome/font-awesome.min.css";
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/opensans/opensans.woff2');
  src: local('Open Sans Light'), local('OpenSans-Light'), url('../fonts/opensans/opensans.woff2') format('woff2');
}

.txHitSmoth{
	color: rgb(45, 45, 45);
}

.hide{
	display: none;
}

body{
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	margin: 0px;
	padding: 0px;
	background-color: black;
}

#customMessage{
	position: fixed;
	height: 100%;
	width: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 9999;
}
	#customMessage .centerin{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#customMessage .boxMessage{
		display: inline-block;
		background-color: white;
		box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.32);
		min-width: 300px;
		padding: 25px;
		border-radius: 8px;
		text-align: center;
		margin: 0px 10px;
	}
		#customMessage .boxMessage .judul{
			font-size: 22px;
		}
		#customMessage .boxMessage .msg{
			margin: 10px 0px;
			font-size: 16px;
		}
	#customMessage input{
		font-size: 15px;
		letter-spacing: 0px;
		color: white;
		background-image: linear-gradient(to right, rgb(255, 70, 72), rgb(255, 66, 107));
		border: none;
		border-radius: 30px;
		padding: 8px 30px;
		cursor: pointer;
		outline: none;
		margin-top: 15px;
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
	#customMessage input:hover{
		background-image: linear-gradient(to right, rgb(255, 70, 72), rgb(255, 70, 72));
	}
#loader{
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgb(35, 42, 48);
	z-index: 9999;
}
	#loader .centerin{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}