  /* The popup form - hidden by default */
  .dbsPopup {
    display: none ;
    position: fixed ;
    padding-top: 15px ;
    z-index: 30000 ;
    width: 100%;
    height: 100% ;
    left: 0 ;
    top: 0 ;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.dbsPopupContent {
    background-color:var(--dbsColour4) ;
    padding: 20px;
    margin: auto ;
    border: 1px solid var(--dbsBlack) ;
    max-width: 1280px ;
}
  
.dbsPopupGrid {
    display: grid ;
}

/* The Close Button */
.dbPopupClose {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
  
.dbPopupClose:hover,
.dbPopupClose:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Add styles to the form container */
.dbsContainer {
    max-width: 600px ;
    padding: 10px ;
}

.dbsCentre {
    text-align: center ;
}
.dbsLinkLogo {
    width: 50% ;
    padding: 10px ;
    border-width: 1px ;
    border-color: var(--dbsBlack) ;
    border-style: solid ;
}