﻿/* Bootstrap Modal CSS */
.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-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: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: 0.6;
  filter: alpha(opacity=60); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857px; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857; }

.modal-body {
  position: relative; }
  .modal-body .function {
    width: 100%;
    text-align: center;
    margin-top: 10px; }
    .modal-body .function .button {
      background: #c2c2c2;
      border-radius: 0 0 0 0.25em;
      width: 50%;
      float: left;
      border: 0; }
      .modal-body .function .button.full {
        float: left;
        width: 100%;
        list-style: none;
        border-radius: 0 0 0.25em 0.25em;
        background: #ca3c3c;
        color: #fff; }
    .modal-body .function .button-right {
      background: #ca3c3c;
      border-radius: 0 0 0.25em 0;
      width: 50%;
      float: left;
      border: 0;
      color: #fff; }
      .modal-body .function .button-right:hover {
        background: #c80a55;
        border-radius: 0 0 0.25em 0;
        width: 50%;
        float: left;
        border: 0; }

.modal-dialog .function .button-left {
  border-radius: 0 0 0 .25em;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.modal-body p {
  padding: 1em;
  line-height: 22px;
  color: #333; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    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); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.modal-header, .modal-body, .modal-footer {
  background-color: #fff;
}

/*# sourceMappingURL=bootstrap.modal.css.map */