.smallPopup {
    display: none;

    position: absolute;

    min-width: 300px;
    max-width: 500px;

    min-height: auto;
    max-height: 300px;

    box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.2);

    text-align: left;
    color: black;
    z-index: 300;
    background: #ffffff;
    border: 0.0625rem solid #d2d2d2;
    border-radius: 0.5rem;

    overflow-y: auto;

    box-sizing: border-box;

    font-size: 14px;

    scrollbar-width: thin;
}

.smallPopup.show {
    display: block;
}

.smallPopup .popup-content {
    padding: 1.8rem;
    padding-top: 0rem;
}

.smallPopup .popup-close {
    display: block;
    cursor: pointer;
    background-image: url('/Templates/MTBP2025/images/icons/popup-close.svg');
    background-size: 22px 22px;
    width: 22px;
    height: 22px;
    position: sticky;
    right: 8px;
    top: 8px;
    z-index: 10;
    background-color: white; 
    margin-left: auto;
    margin-bottom: 10px; 

}

.smallPopup .popup-close:hover{
    filter: invert(1);
    background-color: transparent;
}