* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*::-webkit-scrollbar {
	display: none;
}

.btn:focus {
    box-shadow: none !important;
}

body {
    background: #444;
}

form {
    width: 8.5in;
    height: 11in;
    margin: 0px;
    padding: 0px;
    background: #fff;
    background-image: url('background.jpg');
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    font-family: sans-serif;
}

form .input {
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: start;
    justify-content: start;
    position: absolute;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #dedede;
    font-size: 13px;
    padding-left: 5px;
    transform: scaleY(.9) scale(.9);
    transform-origin: left top;
    font-weight: 400;
}

/* When the input has content (not showing placeholder) */
form .input:not(:placeholder-shown){
    background: #fff !important;
}

form .input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #eee;
}

.custom-checkbox {
    position: absolute;
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Hide the native checkbox */
.custom-checkbox input {
    display: none;
}

/* Create custom checkbox */
.custom-checkbox .checkmark {
    display: inline-block;
    width: 25px;
    height: 25px;
    transform: scale(0.5);
    transform-origin: left top;
    background-color: #eee;       /* default background */
    border: none !important;
    border-radius: 0px;           /* optional rounded corners */
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    background: transparent;
}

/* Hover effect */
.custom-checkbox:hover .checkmark {
    background-color: transparent;
}

/* Checked state */
.custom-checkbox input:checked + .checkmark {
    background-color: transparent;    /* background when checked */
    border-color: #2196F3;
}

/* Tick mark */
.custom-checkbox input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-backdrop {
	background-color: rgba(0, 0, 0, 0.8) !important;
}

.loader-popup {
	background-color: transparent !important;
}

.loader {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	border: 3px solid;
	border-color: #FFF #FFF transparent transparent;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
	content: '';  
	box-sizing: border-box;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border: 3px solid;
	border-color: transparent transparent #FF3D00 #FF3D00;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-sizing: border-box;
	animation: rotationBack 0.5s linear infinite;
	transform-origin: center center;
}

.loader::before {
	width: 32px;
	height: 32px;
	border-color: #FFF #FFF transparent transparent;
	animation: rotation 1.5s linear infinite;
}
    
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
} 
@keyframes rotationBack {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}