#blog-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#blog-popup .popup-box {
	font-family: "D-DIN";
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 600px;
    max-width: 100%;
}
#blog-popup input[type="checkbox"]{
    width: auto ! important;
    padding: 0px;
    margin: 5px 2px;
}
#blog-popup h3 {
	font-family: "D-DIN";
    margin-top: 0;
	font-size: 26px;
}

#blog-popup input {
    width: 100%;
    padding: 5px 10px;
    margin-bottom: 10px;
}
#blog-popup button{border: 2px solid;
	background-color: var(--e-global-color-accent);
    color: var(--e-global-color-primary);
    width: 100%;
    min-height: 59px;
    padding: 20px 40px;
    font-size: 18px;
    margin-top: 20px;
    border-radius: 10px;
}