* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}


body {
	font-family: 'Mukta', sans-serif;
}

.dtr-container {
	position: absolute;
	width: 300px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border: 0px solid #57606f;
	box-shadow: 5px 5px 8px #636e72;
	border-radius: 5px;
}

.dtr-header {
	position: relative;
	display: flex;
	width: 100%;
	background: #3c6382;
	padding: 5px;
	border-radius: 5px 5px 0px 0px;
}

.dtr-header * {
	font-size: 12px;
}

.dtr-header img {
	width: 20px;
	height: 20px;
	margin-right: 5px;
	margin-top: 2px;
}

.dtr-header h5 {
	color: #fff;
	margin: 0;
	margin-top: 5px;
	font-weight: 600;
	font-size: 13px;
}

.dtr-header button {
	position: absolute;
	font-size: 12px;
	right: 5px;
	top: 6px;
	padding: 1px 5px;
	border-radius: 5px;
	border: 1px solid #ff7675;
	background: #ff7675;
	color: white; 
	font-weight: 600;
}

.dtr-header button i {
	font-size: 10px;
	margin-right: 4px;
}

.dtr-body {
	padding: 10px 10px 20px 10px;
	border: 1px solid #636e72;
}

.dtr-body #timer {
	font-family: 'Russo One', sans-serif;
	font-weight: 400;
	font-size: 43px;
	text-align: center;
	margin-bottom: 10px;
}

.dtr-body .dropdown-container {
	padding: 5px;
	overflow: hidden;
	position: relative;
	border-radius: 5px;
	background: #78e08f;
	margin-bottom: 10px;
}

.dtr-body .dropdown-container select {
	background: transparent;
	width: 100%;
	font-size: 15px;
	font-weight: 600;
	border: none;
	color: white;
}

.dtr-body .dropdown-container select option {
	color: #000;
}

.dtr-body .dropdown-container select:focus{
	outline: none;
}

.dtr-body .box {
	position: relative;
}

.dtr-body .box input {
	font-family: 'Russo One', sans-serif;
	font-weight: 400;
	width: 100%;
	padding: 5px 60px 5px 30px;
	border: 0px solid #000;
	border-radius: 5px;
	font-size: 25px;
	background: #c8d6e5;
	text-align: center;
}

.dtr-body .box button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 11.4px 15px;
	border-radius: 0px 5px 5px 0px;
	border: 0px solid #00cec9;
	background: #00cec9;
}

.dtr-body .box button i {
	font-size: 15px;
	color: #fff;
}

.dtr-body .box input:focus {
	outline: none;
}

.dtr-body .box button:focus {
	outline: none;
}

.dtr-footer {
	width: 100%;
	background: #3c6382;
	font-size: 11px;
	padding: 7px 15px;
	color: white;
	font-weight: 600;
	text-align: left;
	border-radius: 0px 0px 5px 5px;
}

.dtr-footer p {
	padding: 0;
	margin: 0px;
}

video {
	display: none;
}

.modal-header {
	padding: 10px;
}

.modal-header h4 {
	font-size: 15px;
	font-weight: 600;
	margin: 0;
}

.modal-body {
	padding: 5px 10px;
}

.modal-body .canvas-box {
	border: 3px dashed #636e72;
	height: 250px;
	border-radius: 5px;
	padding: 7px 7px 7px 7px;
	margin-bottom: 10px;
}

.modal-body canvas {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.modal-body input[type="text"] {
	width: 100%;
	margin: 2px 0px;
	border: none;
	text-align: center;
	font-weight: bold;
	padding: 0px;
	border-radius: 2px;
}

.modal-body input[type="text"]:focus {
	outline: none;
}


.modal-body input[type="password"] {
	width: 100%;
	margin: 2px 0px;
	border: 0;
	border-bottom: 1px solid #b2bec3;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	padding: 5px;
	border-radius: 2px;
}

.modal-body input[type="password"]:focus {
	outline: none;	
}

.modal-footer {
	padding: 10px 10px;
}

.modal-footer button {
	width: 100%;
	padding: 5px;
	background: #0abde3;
	border: 1px solid #00b894;
	border-radius: 3px;
	color: #fff; 
	font-size: 12px;
}

#messagebox-error {
	display: none;
	position: absolute;
	top: 50px;
	left: -15px;
	width: 110%;
	background: #ff6b6b;
	text-align: center;
	font-size: 15px;
	padding: 10px 5px;
	z-index: 500;
	border-radius: 5px;
	border: 1px solid #ee5253;
	color: #fff;
}

#messagebox-success {
	display: none;
	position: absolute;
	top: 50px;
	left: -15px;
	width: 110%;
	background: #1dd1a1;
	text-align: center;
	font-size: 15px;
	padding: 10px 5px;
	z-index: 500;
	border-radius: 5px;
	border: 1px solid #10ac84;
	color: #fff;
}



