.simplepopup{position:fixed;z-index:1000;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:center;animation:fadeIn .3s ease-in-out}.simplepopup .simplepopup-content{background-color:#fff;margin:15% auto;border-radius:15px;width:90%;padding:30px 20px;box-shadow:0px 10px 40px rgba(0,0,0,.3);text-align:center;position:relative;animation:slideIn .5s ease-in-out;display:flex;flex-direction:column;align-items:center}.simplepopup .close{position:absolute;top:15px;right:15px;width:35px;height:35px;background:#ff4d4d;color:#fff;font-size:18px;font-weight:700;border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background-color .3s ease,transform .2s ease}.simplepopup .close:hover{background-color:#e60000;transform:scale(1.1)}.simplepopup .simplepopup-content .simplepopup-block-content{font-family:Arial,sans-serif;font-size:16px;color:#333;line-height:1.8;text-align:center;margin-bottom:20px;width:100%}.simplepopup .simplepopup-content .simplepopup-block-content h1,.simplepopup .simplepopup-content .simplepopup-block-content h2,.simplepopup .simplepopup-content .simplepopup-block-content h3{color:#007bff;margin-bottom:15px}.simplepopup .simplepopup-content .simplepopup-block-content p{margin-bottom:15px;color:#555}.simplepopup .simplepopup-link{display:inline-block;margin-top:20px;padding:10px 20px;background-color:#007bff;color:#fff;text-decoration:none;border-radius:5px;font-size:16px;font-weight:700;transition:background-color .3s ease}.simplepopup .simplepopup-link:hover{background-color:#0056b3}.simplepopup .dontShowFeature{position:absolute;bottom:15px;left:20px;font-size:14px;color:#555;display:flex;align-items:center}.simplepopup .dontShowFeature input[type=checkbox]{margin-right:10px}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes slideIn{from{transform:translateY(-50px);opacity:0}to{transform:translateY(0);opacity:1}}@media (min-width:1200px){.simplepopup .simplepopup-content{max-width:800px;font-size:18px}}@media (max-width:480px){.simplepopup .simplepopup-content{padding:20px;font-size:14px}.simplepopup .dontShowFeature{font-size:12px;left:10px}.simplepopup .close{width:30px;height:30px;font-size:16px}}