.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background:url(http://ubudproperty.com/images/back.jpg); no-repeat center top;
 display: cover;
    background-size: cover;
    transition: opacity .3s ease;
    display: table;
    transition: opacity .3s ease;

}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.modal-container {
  width: 341px;
  height: 454px;
  margin: 0px auto;
  padding: 15px 5px;  
  background-image:url(http://ubudproperty.com/images/maskot.png);
  border-radius: 5px;
  transition: all .3s ease;
  font-family: Helvetica, Arial, sans-serif;
}

.modal-header h3 {
  margin-top: 0;
  color: #000000;
  padding: 5px;
}



.modal-default-button {
  float: right;
}
.boxBody
{
    background:url(http://ubudproperty.com/images/maskot.png)
    border-top:10px solid #ffffff;
    border-bottom:1px solid #dde0e8;
    padding:0px 20px;
}

/*
 * the following styles are auto-applied to elements with
 * v-transition="modal" when their visiblity is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modal-enter, .modal-leave {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}