html {
	-webkit-text-size-adjust: none;
	width: 100%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	/*-moz-osx-font-smoothing: grayscale;*/
}
body {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	width: 100%;
	height: 100%;
	color: #ffffff;
	background-color:#0c0c0c;
}
* {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding:0;
	margin:0;
}
.container {
	width:100% !important;
	max-width: 550px;
	margin:0 auto;
}
a {
	color:#0c0c0c;
	cursor:pointer;
}
a:hover, a:focus, a:active {
	outline:none;
	text-decoration:none;
}
a:hover {
	color:#0c0c0c;
}
ul, ol {
	list-style:none;
	padding:0;
	margin:0;
}
li {
	display:inline;
}
p {
	margin-bottom: 22px;
}
img {
	border: 0;
	vertical-align: top;
	max-width: 100%;
	height: auto;
	width: auto\9;/* ie8 */
}
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	font-weight: 300;
}
::-webkit-input-placeholder {
	opacity: 1;
	color: #0c0c0c;
}
::-moz-placeholder {
	opacity: 1;
	color: #0c0c0c;
}
:-ms-input-placeholder {
	opacity: 1;
	color: #0c0c0c;
}
:-moz-placeholder {
	opacity: 1;
	color: #0c0c0c;
}
input[type="submit"]  {
	-webkit-appearance: none;
}
input, textarea, select  {
	outline: none;
	resize: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
}
input:focus, textarea:focus, select:focus {
	outline: none;
}
button::-moz-focus-inner {
	border: 0;
}
select::-ms-expand  {
	display: none;
}
*, *:after, *:before  {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/************* Common *************/
.table {
	display: table;
	height: 100%;
	width: 100%;
	padding: 30px 30px;
}
body > .table {
    background: url('../images/main-background.jpg')center top no-repeat;
	background-size: cover;
}
.table-cell {
	display: table-cell;
	vertical-align: middle;
}
.text-center {
	text-align: center;
}
.d-flex {
    display: -ms-flexbox;
    display: flex;
}
.align-items-center {
    -ms-flex-align: center;
    align-items: center;
}

/************* Forms Control *************/
.form-group {
	margin-bottom: 20px;
}
.form-group.mb-40 {
	margin-bottom: 40px;
}
.form-group.mb-30 {
	margin-bottom: 30px;
}
.form-control {
	height: 55px;
	font-size: 18px;
	font-weight: 400;
	width: 100%;
	border: 0;
	border-bottom: 0;
	color: #0c0c0c;
	padding: 10px 15px;
	border-radius: 0;
	position: relative;
	background-color: #f29838;
}
.input-pattern {
	border: 2px dashed #f29838;
	padding: 12px;
	border-radius: 10px;
}
.custom-btn {
	border: 0;
	display: inline-block;
	vertical-align: top;
	color: #0c0c0c;
	font-size: 20px;
	font-weight: 500;
	padding: 15px 40px 14px 25px;
	border-radius: 0;
	box-shadow: none !important;
	outline: none !important;
	cursor: pointer;
	font-family: 'Raleway', sans-serif; 
	position: relative;
	text-decoration: none;
	background-color: #f29838;
}
.custom-btn:before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 100%;
	background-image: url('../images/arrow-right.png');
	background-position: center right 12px;
	background-repeat: no-repeat;
	background-size: 20px;
}
.custom-btn.arrow-reverse {
	padding: 15px 25px 14px 40px;
}
.custom-btn.arrow-reverse:before {
	left: 0;
	right: inherit;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
}
.custom-btn:hover {
	color: #0c0c0c;
}
.error {
	margin-top: 5px;
	font-size: 16px;
}
.mt-50 {
	margin-top: 50px;
}
strong {
	font-weight: 800;
}

/************* Top Box *************/
.header-box {
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 25px;
}
.header-box:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 480px;
	height: 2px;
	margin: 0 auto;
	background-color: #ffffff;
}
.header-box img {
	display: block;
	margin: 0 auto;
	max-width: 450px;
	width: 100%;
}

/************* Center Box *************/
.center-box {
	min-height: 400px;
}
.center-box.first h2 {
	font-size: 26px;
	margin-bottom: 30px;
}
.center-box.first h2 + p {
	font-size: 22px;
}
.center-box.first .btn-wrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 0;
	padding: 0 14px;
}
.center-box.first .btn-wrap .custom-btn {
	width: 230px;
	margin-bottom: 15px;
}
.center-box-inner {
	width: 100%;
}
.default {
	padding: 10px 0;
}
.default .icon {
	width: 150px;
	margin: 0 auto 10px;
}
.default h2 {
	font-size: 40px;
	margin-bottom: 10px;
}
.default h3 {
	font-size: 30px;
	margin-bottom: 15px;
}
.default ul {
	padding-left: 19px;
}
.default ul li {
    display: list-item;
    list-style-type: disc;
    font-size: 16px;
}
.rules .default {
	padding-bottom: 50px;
}
.rules p {
	font-size: 16px;
	padding-left: 19px;
}

/************* Footer Box *************/
.footer-box {
	text-align: center;
	margin-top: 20px;
}
.footer-box-inner {
	display: inline-block;
	vertical-align: top;
}
.footer-box .foot-link {
	width: 30px;
	height: 30px;
	margin: 0 7px;
	display: inline-block;
	vertical-align: top;
}
.footer-box .foot-link:first-child{
	margin-left: 0;
}
.footer-box .foot-link:last-child{
	margin-right: 0;
}
.footer-box .foot-link a {
	display: block;
}
.foot-logo {
	padding-top: 20px;
}
.foot-logo img {
	display: block;
	margin: 0 auto;
}
/************* Status Box *************/
.status-box {
	display: block;
	max-width: 410px;
	width: 100%;
	margin: 0 auto;
}
.status-box-row {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	margin-bottom: 30px;
}
.status-box .label {
	float: left;
	width: 50%;
	padding: 0 10px;
	text-align: right;
}
.status-box .label-info {
	float: left;
	width: 50%;
	padding: 0 10px;
	text-align: left;
	font-weight: 600;
}
.status-box .label-info span {
	background-color: transparent;
	padding: 8px 13px;
	line-height: 1;
	display: inline-block;
	vertical-align: top;
	margin-top: -5px;
}
.status-box .label-info span.approved {
	background-color: #14af00;
}
.status-box .label-info span.onstandby {
	background-color: #e49f00;
}
.status-box .label-info span.reject {
	background-color: #a70000;
}
.rules-link-box {
	margin-top: 20px;
	text-align: center;
}

/************* Congratulation *************/
.congratulation .default .icon {
	margin-bottom: 40px;
}
.congratulation .default .custom-btn {
	margin-top: 20px;
}

.form-control.error {
	margin-top: 0px !important;
	font-size: inherit;
}