.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal .close {
    background: none;
    border: 0;
    font-size: 45px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    right: -45px;
    top: -45px;
    color: #fff;
}
.modal-open .modal {
    overflow-x: hidden;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    outline: 0;
    width: 100%;
    padding:60px;
}
.modal-body input[type="submit"] {
    margin:16px auto 0;
}
.modal-disclamer {
    text-align:left;
    width:75%;
    display: inline-block;
    font-size: 13px;
}
.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}
.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: 0.5;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
}
.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (.5rem * 2));
}
.modal-title {
    font-size: 42px;
    line-height: 48px;
	font-weight: 500;
    margin-bottom: 40px;
	position:relative;
	z-index: 1;
}
.modal-title::before {
	content:url(../../images/section-decoration-1.svg);
	position: absolute;
    top: -26px;
    left: 0;
    z-index: -1;
}
.modal-text {
	font-size: 18px;
    line-height: 24px;
}
.modal-body {
	margin-top:40px;
}
@media (min-width: 771px) {
	.modal-dialog {
    width: 770px;
    margin: 30px auto;
}
}

@media (min-width: 768px) {
.modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
}
@media (min-width: 576px) {
    .modal-dialog-centered {
        min-height: calc(100% - (10.75rem * 2));
    }
}