﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

.Panel_Popup_MainBackground {
    width: 100%;
    background: #ffffffb4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    z-index: 100;
}

.PopUp {
    width: 35%;
    background: #ffffff;
    border-radius: 6px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: visible;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 150;
}

.PopUp img {
    width: 80px;
    margin-top: 5%;
}

.PopUp h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 10px;
}
