@-webkit-keyframes pulse {
    0% { box-shadow:0 0 8px #599bb3, inset 0 0 8px #599bb3; }
    50% { box-shadow:0 0 32px #599bb3, inset 0 0 28px #599bb3; }
    100% { box-shadow:0 0 8px #599bb3, inset 0 0 8px #599bb3; }
  }
  @keyframes pulse {
    0% { box-shadow:0 0 8px #599bb3, inset 0 0 8px #599bb3; }
    50% { box-shadow:0 0 32px #599bb3, inset 0 0 28px #599bb3; }
    100% { box-shadow:0 0 8px #599bb3, inset 0 0 8px #599bb3; }
  }
.popupLink{
    position: fixed;
    width: 80px;
    height: 80px;
    margin: auto;
    right: 2%;
    bottom: 2%;
    z-index: 10;
    overflow: hidden; 
    box-shadow: 0px 10px 41px -7px #276873;
    background:linear-gradient(to bottom, #FF0000 5%, #FF0000 100%);
    background-color:#599bb3;
    border-radius:200px;
    display:inline-block;
    cursor:pointer;
    -webkit-animation: pulse linear 1s infinite;
    animation: pulse linear 1s infinite;
}
.popupLinkImage{
    width:100%; 
    border-radius:200px
}

.popupWindow{
    display: none;
    position: fixed;
    background-color:rgb(30, 42, 59);
    width: 350px; 
    height: auto; 
    padding: 20px 10px 20px 10px; 
    margin: auto; 
    right: 2%; 
    bottom: 2%; 
    z-index: 10; 
    overflow: hidden;
    -webkit-animation: pulse 2s linear 1s infinite;
    animation: pulse linear 1s infinite;
    border-radius: 20px;
}

.closeButton{
width: 100%;
height: 30px;
background-color:#2b2b2b;
color: #ffffff;
margin-top: 20px;
border-radius: 20px;
}
.iframe{
    border-radius: 20px;
}