/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.dashboard-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 99;
}
.dashboard-popup-container .popup-dashboard {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.dashboard-popup-container .popup-dashboard_box {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.dashboard-popup-container .popup-dashboard_box .popup-dashboard {
    max-width: 625px;
    width: 100%;
}
.dashboard-popup-container .close_popup_btn svg {
    width: 20px;
    height: 20px;
}
.dashboard-popup-container .close_popup_btn {
    color: #000;
    font-size: 20px;
    float: inline-end;
    position: relative;
    top: -7px;
}