.paynote {display: none;}
.paynote b {background-color:var(--kbsb-cream);color:black;}

.download-container {
    text-align: center;
    display: flex;
    justify-content: center;
}

.download-container > a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px var(--kbsb-red);
    padding: 1em 1.5em;
    background-color: rgba(139, 0, 3, 0.2);
    color: black;
    border-radius: 10px;
}

.download-container > a:hover {
    background-color: rgba(139, 0, 3, 0.6);
    color: white;
}

.down-separator {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.down-separator > span {
    padding: 0 20px;
    background-color: white;
    z-index: 999;
}

.down-separator::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--kbsb-red);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}