@font-face {
	font-family: "audiowide";
	src: url("../fonts/audiowide-regular.ttf");
}
html {
	height: 100%;
}
body {
	height: 100%;
	color: #fff;
}

.bg_landing {
	background-image: url("../images/background.jpg"); /* change background image here */
	/* background: transparent; */
	background-size: cover;
	background-attachment: fixed;
}
.nomargin-row {
	margin-left: 0;
	margin-right: 0;
}
.nopadding-left {
	padding-left: 0;
}
.nopadding-right {
	padding-right: 0;
}
.form {
	padding-top: 540px;
}
.fullwidth {
	width: 100%;
}
#voucher {
	background: transparent;
    border: none;
    box-shadow: none;
    font-family: "audiowide";
    color: white;
    text-align: center;
    height: 55px;
}

#voucher::-webkit-input-placeholder { /* WebKit browsers */
	font-size: 15px;
	color: #fff;
}
#voucher:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	font-size: 15px;
	color: #fff;
}
#voucher::-moz-placeholder { /* Mozilla Firefox 19+ */
	font-size: 15px;
	color: #fff;
}
#voucher:-ms-input-placeholder { /* Internet Explorer 10+ */
	font-size: 15px;
	color: #fff;
}
#voucher:focus {
	font-size: 35px;
}

#number {
	height: 50px;
	border-radius: 8px;
	border: 2px solid #ccc;
	text-align: center;
	font-size: 20px;
}

body.bg_landing.modal-open .content {
	content: "";
	z-index: -1;
	display: block;
	width: 768px;
	height: 1024px;
	background-image: url("../images/background.jpg");
	/* background: transparent; */
	background-size: cover;
	background-attachment: fixed;
	
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}
.modal-content {
    background-color: #000;
    border: 1px solid #fff;
    min-height: 512px;
    position:relative;
	display: table;
    
}
.modal-dialog {
    margin: 30% auto;
}
.modal-body {
	display: table-cell;
	vertical-align: middle;
	width: 600px;
}
.popup_header_text {
	text-transform: uppercase;
	font-size: 40px;
	border-bottom: 1px solid #fff;
	padding: 5px 20px;
}
.popup_text {
	font-size: 30px;
	padding: 5px 20px;
}
.popup_text_winning {
	font-size: 22px;
	padding-top: 30px;
}
.popup_text_winning_image {
	margin-top: 10px;
	margin-bottom: 10px;
}
.loader_holder {
	position: absolute;
	background-color: rgba(0,0,0,0.7);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: table;
	display: none;
}
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 99px;
    height: 99px;
    animation: spin 2s linear infinite;
    margin-left: 335px;
    margin-top: 424px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}