*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.popup{
    background-color: #ffffff;
    width: 500px;
    height: 585px;
    /*padding: 30px 40px;*/
    position: fixed;
    transform: translate(-50%,-50%);
    transition: 0.5s;
    left: 50%;
    top: 50%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none;
    text-align: center;
    z-index: 101;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.315); /* Black w/ opacity */

}

.popup h2 {margin-left: 20px; color:#ffd700; float: left; font-family: 'King Lionel - Personal Use'; font-size:40px;}


.popup .close:hover { 
  color:red; 
}
.popup .close
{
    width: 50px;
    border:0px; 
    color: white; 
    margin:5px;
    opacity: 1 !important;
}

.popup button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  color: white;
  transition: 0.5s;
}

.popup button span:after {
  /*content: '\00bb';*/
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.popup button:hover span {
  /*padding-right: 25px;*/
}

.popup button:hover span:after {
  opacity: 1;
  right: 0;
}

.popup .buttonbook 
{   
  border-radius: 5px;
  padding: 10px 20px;
  background-color: red;
  border: 0;
  margin: -135px 0px 0px 0px;
  position: absolute;
  transform: translate(-50%, -50%);
}

.popup a
{
  color: white;
  font-family: arial;
  font-size: 12px;
}

.popup img {transition: transform .2s;}
.popup img:hover
{
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}



/*RESPONSIVE */

@media only screen and (max-width:768px){
  
   .popup 
   {width: 400px;}

}