@charset "utf-8";

body {
  font-size: 14px;
  font-family: Verdana, sans-serif;
}

.modalOpen, .close {
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  margin: 15px auto 0;
}

.modalOpen:hover, .close:hover{
  opacity: .9;
}

.modalOpen{
  position: fixed;
  z-index: 999;
  left: 0;
  bottom: 0;
  padding: 3px 6px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.close {
  margin: 0;
  float: right;
  width: 50px;
  font-size: 25px;
}

.modal-content {
  background: #fff;
  padding: 15px;
  border-radius: 4px;
  margin: 20px auto;
  transition: .8s;
  z-index: 99999;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  overflow-y: scroll;
}

.modal-content p {
  line-height: 1.5;
  margin: 0 0 20px;
}

.modal-content td{
  padding: 10px;
}

#aaa,#bbb,#ccc,#ddd,#eee{
  display: none;
}
.fixed{
  overflow: visible;
}

.modal-header{
  border-bottom: none;
}

@media (min-width: 768px){
.modal-dialog {
    width: 90%;
}
}