.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;
    font-family:arial;
}
.modal p {
    margin:0;
}
.modal input {
    padding: 10px 16px;
    margin-bottom: 15px;
    width: 85%;
    font-size: 19px;
    line-height: 1;
}
.modal input[type=submit] {
    color: #fff;
    background: #000c55;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 0;
    margin-bottom:0;
}
.modal .close {
    background: none;
    border: 0;
    font-size: 32px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    right: 2px;
    top: -4px;
    color: #fff;
}
.modal .close img {
    font-size: 25px;
}
.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%;
    text-align: center;
    padding-bottom: 25px;
}
.modal-body input {
    font-size: 18px;
    padding: 5px 12px;
    width: 65%;
    margin-top: 20px;
}
.modal-body input[type="submit"] {
    border: 0;
    background: #f08000;
    color: #fff;
    width: auto;
    padding: 10px 20px;
    cursor: pointer;
}
.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 {
    padding: 20px 0;
    font-size: 23px;
    font-family: arial;
    text-transform: uppercase;
    border-radius: 6px 6px 0 0;
}


@media (min-width: 768px) {
.modal-dialog {
    width: 450px;
    margin: 30px auto;
}
.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));
    }
}