.PopupWindows{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 30;
}

.PopupWindows .content{
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.PopupWindows.visible{
    display: block;
}

.PopupWindows .popupBody{
    position: relative;
    display: none;
    width: 41%;
    height: auto;
    border-radius: var(--border-r);
    background: #fff;
    padding: 32px 48px 32px 48px;
    box-sizing: border-box;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}

.PopupWindows.visible .popupBody.visible{
    display: block;
}