#sponsorship-popup {
    display: block;
    position: fixed;
    bottom: 14px;
    left: 14px;
    box-shadow: gray 0px 0px 5px;
    border-radius: 10px;
    z-index: 99;
    background-color: white;
    padding: 15px;
    width: 300px;
    max-width: calc(100vw - 28px);
}

#sponsorship-close {
    position: absolute;
    top: 5px;
    right: 7px;
    cursor: pointer;
}

#sponsorship-close svg {
    height: 15px;
    width: 15px;
    fill: #231f20;
}

.popup-content {
    padding-top: 10px;
}

.popup-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #231f20;
    margin: 0 0 10px 0;
}

.popup-body {
    margin-bottom: 15px;
    color: #231f20;
    line-height: 1.5;
}

.popup-body p {
    margin: 0 0 10px 0;
}

.popup-body strong {
    display: block;
    margin-bottom: 10px;
}

.popup-button-wrapper {
    text-align: center;
    margin-top: 15px;
	display: flex;
    justify-content: end;
}

.popup-button {
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 1.1rem;
    color: #fff;
    background-color: #1a53a4;
    text-decoration: none;
}


/* Responsive design */
@media (max-width: 768px) {
    #sponsorship-popup {
        width: calc(100vw - 28px);
        max-width: 300px;
    }
}

