<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Overlay for popup */
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
}

/* Show popup when overlay is triggered */
.overlay.visible {
    visibility: visible;
    opacity: 1;
}

/* Popup box styling */
.popup {
    margin: 70px auto;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    transition: all 5s ease-in-out;
    text-align: center;
}

/* Popup heading */
.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}

/* Close button */
.popup .close {
    position: absolute;
    transition: all 200ms;
    font-size: 30px;
    font-weight: 900 !important;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}
.popup .close:hover {
    color: #150050;
}

/* Content overflow management */
.popup .content {
    max-height: 30%;
    overflow: auto;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 700px) {
    .popup {
       /* width: 70%; */
    }
}



/* mobile part */
@media screen and (max-width: 700px){
    .responsiveclosed {
        width: 350px;
    }

    a#closePopup {
        margin-top: 20px;
    }

    .button-19 {
        width: 30% !important;
        left: 35% !important;
        bottom: 13% !important;
    }
}

/* BUTTON */
.button-19 {
    appearance: button;
    background-color: #1899D6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: din-round,sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 13px 16px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    width: 10%;
    position: absolute;
    bottom: 20%;
    left: 45%;
  }
  
  .button-19:after {
    background-clip: padding-box;
    background-color: #1CB0F6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    bottom: -4px;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
  
  .button-19,
  .button-19:focus {
    user-select: auto;
  }
  
  .button-19:hover:not(:disabled) {
    filter: brightness(1.1);
    -webkit-filter: brightness(1.1);
  }
  
  .button-19:disabled {
    cursor: auto;
  }
  
  .button-19:active {
    border-width: 4px 0 0;
    background: none;
  }

  button.button-19 {
    margin-top: -300px !important;
}</pre></body></html>