/* ----- DIALOG/MODAL ----- */
.modal-backdrop{	
	background: #003055;
}

.modal-backdrop.in{
	opacity: 0.95;
}

/* FADE/SCALE EFFECT */
	.modal.fade .modal-dialog {
		opacity: 0;
		-webkit-transform: scale(0.1);
			-ms-transform: scale(0.1);
			 -o-transform: scale(0.1);
				transform: scale(0.1);
		-webkit-transition: all 0.3s ease;
		   -moz-transition: all 0.3s ease;
			 -o-transition: all 0.3s ease;
				transition: all 0.3s ease;
	}

	.modal.fade.in .modal-dialog {
		opacity: 1;
		-webkit-transform: scale(1);
			-ms-transform: scale(1);
			 -o-transform: scale(1);
				transform: scale(1);
		-webkit-transform: translate3d(0%, 0, 0);
			-ms-transform: translate3d(0%, 0, 0);
			 -o-transform: translate3d(0%, 0, 0);
				transform: translate3d(0%, 0, 0);
	}

/* DIALOG CONTENT */
	.modal-content {
		background: transparent;
		color: #fff;
		font-size: 14px;
		border: none;
		border-radius: 2px;
		box-shadow: none;
		/* -webkit-box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2);
		   -moz-box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2);
				box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2); */
	}

/* DIALOG HEADER */
	.modal-header {
		min-height: 16px;
		padding: 15px 24px;
		border-bottom: 1px solid #ccc;
		margin-bottom: 10px;
		
	}
	
	
	.modal-header div{
		float: left;
		margin: 5px 20px 0 0;
	}
	
	.modal-header span{
		font-weight: 600;
	}

	.modal-title {
		font-weight: 600;
		font-size: 21px;
	}
	
	
	

	/* DIALOG BODY */
	.modal-body {
		display: flex;
		flex-direction: row;
	}

	.modal-body h3 {
		font-size: 50px;
		font-weight: 800;
		margin-bottom: 50px;
	}
		
	.modal-body p {
		font-weight: 400;
		font-size: 16px;
		width: 85%;
	}

	.modal-body .lead {
		font-weight: 300;
		font-size: 16px;
		color: #757575;
	}

	.modal-body p:last-child,
	.modal-body .lead:last-child {
		margin-bottom: 0;
	}
	
	
	.modal-body input{
		background: transparent;
		border: 0;
		border-bottom: 2px solid #fff;
		outline: 0;
		display: block;
		margin: 50px 0;
		width: 60%;
	}
	
	.modal-body input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	  color: #fff;
	}
	.modal-body input::-moz-placeholder { /* Firefox 19+ */
	  color: #fff;
	}
	.modal-body input:-ms-input-placeholder { /* IE 10+ */
	  color: #fff;
	}
	.modal-body input:-moz-placeholder { /* Firefox 18- */
	  color: #fff;
	}
	
	.modal-body form{
		margin-top: 100px;
	}
	
@media (min-width: 992px){
	.modal-lg {
		width: 90%;
	}
}

/* DIALOG FOOTER */
	.modal-footer {
		margin-top: 24px;
		padding: 8px 0;
		border-top: 1px solid #ccc;
		min-height: 50px;
	}

	.modal-footer .btn {
		height: 36px;
		margin-right: 8px;
		padding: 8px 10px;
		border: none;
		border-radius: 0;
		text-transform: uppercase;
		font-weight: 400;
		color: #777;
		background-color: #fff;
	}

	.modal-footer .btn:focus {
		outline: none;
		box-shadow: none;
	}

	.modal-footer .btn:focus,
	.modal-footer .btn:hover {
		color: #fff;
	}

	.modal-footer .btn + .btn {
		margin-left: 0;
	}

	.modal-footer .btn + .btn:last-child {
		margin-left: -4px;
	}
	
	.modal-footer .btn-primary{
		background: #4075ac;
		color: #ffffff;
	}	
	
	.modal-footer .btn-danger{
		background: #c42014;
		color: #fff;
	}
	
	.modal-footer .btn:hover{
		background: #333;
		color: #fff;
	}

	.modal label{
		font-weight: 600;
	}
	
	.modal select{
		background: #fff;
		border: 1px solid #ccc;
		max-width: 35%;
	}
	
	.reason-box{
		width: 100%;
		padding-bottom: 5px;
		/* border-bottom: 1px solid #ddd; */
		margin-bottom: 10px;
	}
	
	.modal .info{
		font-style: italic;
		color: #F44336;
	}
	
	.modal .info img{
		max-height: 16px;
		width: 16px;
		margin-right: 10px;
		vertical-align: text-bottom;
	}
	
	.modal-half{
		max-width: 400px;
	}
	
	.close-modal{
		cursor: pointer;
	}