.modal {
	display: none;
	position: fixed;
	z-index: 100;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */

.modal-content {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	width: 25%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s
}

/* Add Animation */

@-webkit-keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}
	to {
		top: 0;
		opacity: 1
	}
}

@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}
	to {
		top: 0;
		opacity: 1
	}
}

/* The Close Button */

.close {
	color: #000;
	float: right;
	font-size: 28px;
	font-weight: bold;
	width: 100%;
	text-align: right;
	margin-left: -0.4em;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.modal-header {
	padding: 2px 16px;
	background-color: #5cb85c;
	color: white;
}

.modal-body {
	padding: 2px 16px;
}

.modal-footer {
	padding: 2px 16px;
	background-color: #5cb85c;
	color: white;
}

#otp-wrap-form{
	padding: 1em;
}

#divLoading {
	display: none;
}

#divLoading.show {
	display: block;
	position: fixed;
	z-index: 100;
	background-image: url('http://loadinggif.com/images/image-selection/24.gif');
	background-color: rgba(255, 255, 255, 0);
	opacity: 0.4;
	background-repeat: no-repeat;
	background-position: center;
	left: 0;
	bottom: 0;
	right: 0;
	top: 0;
}

#loadinggif.show {
	left: 50%;
	top: 50%;
	position: absolute;
	z-index: 101;
	width: 32px;
	height: 32px;
	margin-left: -16px;
	margin-top: -16px;
}
.table{
	word-break: inherit;
}
@media (max-width: 992px) {
	.container {
		width: 100%;
	}
	.modal-content {
		width: 50%;
	}

}
@media (max-width: 576px) {
	.banner-cols h3 {
		border: 5px #fff solid;
		border-left: 0;
		border-right: 0;
		border-top: 0;
	}
	.modal-content {
		width: 80%;
	}
}