/*
 * Bootstrap Modal
 */
body.body-modal {
	background-color: #fff;
	color: #14458d
}
.modal-backdrop {
	background-color: rgba(15, 58, 120, 0.5);
}
.modal-header {
	border: none;
    padding: 20px 20px 10px 30px;
}
.modal-content {
	border: none;
    border-radius: 0;
    box-shadow: none;
}
.modal-body {
	color: #14458d;
	min-height: 200px;
	padding: 0 50px 0 30px;
	margin: 10px 0 40px;
}
	.modal-body > .content {
		font-size: 16px;
	    line-height: 1.6;
	    padding-right: 5px;
	}
.modal-iframe {
	padding: 0;
}
.modal-iframe:before {
	-webkit-animation: fa-spin 2s infinite linear;
  	animation: fa-spin 2s infinite linear;
	position: absolute;
	content: "\f110";
	font-family: fontawesome;
    font-size: 5em;
	top: 50%;
	left: 50%;
	margin: -50px 0 0 -50px;
	z-index: 1
}
.modal-iframe iframe {
	position: relative;
	z-index: 2
}
.modal-title {
    font-size: 23px;
	color: #14458d;
	line-height: 1.2
}

.modal-image {
	overflow: hidden;
	max-height: 300px
}
.modal-image > img {
	display: block;
    height: auto;
    max-width: 100%;
    width: auto;
}
.modal-header .close {
	background-color: #14468F;
	border-radius: 50%;
	color: #FFF;
	display: block;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 34px;
	font-weight: bold;
	height: 35px;
	line-height: 1;
	margin: 0;
	opacity: 1;
	text-align: center;
	text-shadow: none;
	vertical-align: top;
	width: 35px;
	position: absolute;
	top: -9px;
	right: -10px;
}
.modal-header .close:hover,
.modal-header .close:focus {
	background-color: #019ad6;
}

.modal-footer {
	border: none;
    padding: 0
}
.modal-btn {
	background-color: #14468f;
    border-radius: 5px 5px 0 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.1;
    padding: 15px 20px;
    text-transform: uppercase;
}
.modal-btn:hover,
.modal-btn:focus {
	background-color: #019ad6;
	text-decoration: none;
	outline: none;
	color: #fff
}
.modal-prev,
.modal-next {
    background-color: rgba(20, 70, 143, 0.8);
    bottom: auto;
    padding: 7px 12px 9px;
    top: 40%
}
.modal-prev:hover,
.modal-prev:focus,
.modal-next:hover,
.modal-next:focus {
    background-color: #14468f;
}
.modal-prev {
	border-radius: 0 5px 5px 0;
    left: 0;
    right: auto;
}
.modal-next {
	border-radius: 5px 0 0 5px;
    right: 0;
    left: auto;
}

#modal-product .modal-image {
	bottom: 0;
    left: 0;
    max-height: none;
    max-width: 40%;
    position: absolute;
    top: 0;
}
#modal-product .modal-image > img {
	max-width: none;
    width: 100%;
}
#modal-product .modal-content {
	padding-left: 40%;
}
#modal-product .modal-header
#modal-product .modal-body {

}

.modal-form {
	padding: 10px 25px 0;
}
.modal-form .content + fieldset {
	margin-top: 20px
}
.modal-form fieldset + fieldset {
	margin-top: 10px
}
.modal-form label {

}


@media (min-width: 768px) {
	.modal-dialog {
		width: 900px
	}
}