.popup-image-desktop{display:block;max-width:100%;height:auto}.popup-image-mobile{display:none;max-width:100%;height:auto}@media (max-width:768px){.popup-image-desktop{display:none}.popup-image-mobile{display:block}}.popup-overlay{position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999}.popup-overlay-item{position:absolute;inset:0;display:flex;pointer-events:none}.popup-overlay-item,.popup-overlay-item.popup-position-center{justify-content:center;align-items:center}.popup-overlay-item.popup-position-top-left{justify-content:flex-start;align-items:flex-start;padding:20px}.popup-overlay-item.popup-position-top-right{justify-content:flex-end;align-items:flex-start;padding:20px}.popup-overlay-item.popup-position-bottom-left{justify-content:flex-start;align-items:flex-end;padding:20px}.popup-overlay-item.popup-position-bottom-right{justify-content:flex-end;align-items:flex-end;padding:20px}.popup-overlay-item.popup-position-top{justify-content:center;align-items:flex-start;padding:20px}.popup-overlay-item.popup-position-bottom{justify-content:center;align-items:flex-end;padding:20px}.popup-overlay-item.popup-position-left{justify-content:flex-start;align-items:center;padding:20px}.popup-overlay-item.popup-position-right{justify-content:flex-end;align-items:center;padding:20px}.popup-modal{background:white;border-radius:8px;box-shadow:0 4px 20px rgba(0,0,0,.15);max-width:90vw;max-height:90vh;overflow:hidden;position:relative;display:flex;flex-direction:column;pointer-events:auto}.popup-header{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;border-bottom:1px solid #e0e0e0}.popup-header h3{margin:0;font-size:18px;font-weight:600}.popup-close{background:none;border:none;font-size:24px;cursor:pointer;color:#666;padding:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:background-color .2s}.popup-close:hover{background-color:#f5f5f5}.popup-content{padding:20px;flex:1 1 auto;min-height:0;overflow:auto;-webkit-overflow-scrolling:touch;position:relative;width:100%}.popup-content-html{display:flex;flex:1 1 auto;min-height:0;padding:0}.popup-html-content{position:relative;flex:1 1 auto;min-width:0;min-height:0;z-index:1;background:#fff;overflow:auto;-webkit-overflow-scrolling:touch}.popup-html-frame{display:block;width:100%;height:100%;border:0;outline:0;box-shadow:none;background:#fff;pointer-events:auto}.popup-html-frame--locked{pointer-events:none}.popup-background{position:absolute;top:0;left:0;width:100%;height:100%}.popup-text-overlay{position:absolute;left:0;right:0;padding:20px;color:#fff;display:flex;pointer-events:none;z-index:1}.popup-text-overlay.popup-text-top{top:20px;align-items:flex-start;justify-content:flex-start}.popup-text-overlay.popup-text-center{top:50%;transform:translateY(-50%);align-items:center;justify-content:center;text-align:center}.popup-text-overlay.popup-text-bottom{bottom:20px;align-items:flex-end;justify-content:flex-end;text-align:right}.popup-description{font-size:1.6rem;line-height:1.6;font-weight:500;text-shadow:0 2px 4px rgba(0,0,0,.7);max-width:90%}@media (max-width:768px){.popup-description{font-size:1.4rem}}.popup-content img{width:100%;height:auto;margin-bottom:16px}.popup-footer{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;border-top:1px solid #e0e0e0;background-color:#f9f9f9}.popup-footer label{display:flex;align-items:center;gap:8px;cursor:pointer;font-size:14px}.popup-footer button{padding:8px 20px;background-color:#333;color:white;border:none;border-radius:4px;cursor:pointer;font-size:14px}.popup-footer button:hover{background-color:#555}.popup-dont-show-again{padding:10px;border-top:1px solid #e0e0e0;background-color:#f5f5f5;justify-content:space-between;align-items:center}.popup-dont-show-again,.popup-dont-show-again-buttons{display:flex;flex-wrap:wrap;gap:8px}.popup-dont-show-again-btn{padding:4px 10px;font-size:12px;border:1px solid #ddd;border-radius:4px;background-color:#fff;cursor:pointer;transition:all .2s}.popup-dont-show-again-btn:hover{background-color:#f0f0f0;border-color:#999}.popup-window{position:fixed;background:white;border-radius:8px;box-shadow:0 8px 32px rgba(0,0,0,.2);max-width:90vw;max-height:90vh;overflow:hidden;display:flex;flex-direction:column;animation:none}.popup-window.popup-position-center{top:50%;left:50%;transform:translate(-50%,-50%);animation:fadeIn .2s ease-out}.popup-window.popup-position-top-left{top:20px;left:20px}.popup-window.popup-position-top-right{top:20px;right:20px}.popup-window.popup-position-bottom-left{bottom:20px;left:20px}.popup-window.popup-position-bottom-right{bottom:20px;right:20px}.popup-window.popup-position-top{top:20px;left:50%;transform:translateX(-50%)}.popup-window.popup-position-bottom{bottom:20px;left:50%;transform:translateX(-50%);animation:slideInUp .3s ease-out}.popup-window.popup-position-bottom-left,.popup-window.popup-position-bottom-right{animation:slideInUp .3s ease-out}.popup-window.popup-position-left{top:50%;left:20px;transform:translateY(-50%)}.popup-window.popup-position-right{top:50%;right:20px;transform:translateY(-50%)}@keyframes slideInUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.popup-window.popup-position-top,.popup-window.popup-position-top-left,.popup-window.popup-position-top-right{animation:slideInDown .3s ease-out}@keyframes slideInDown{0%{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}.popup-window.popup-position-left{animation:slideInLeft .3s ease-out}@keyframes slideInLeft{0%{opacity:0;transform:translateX(-20px) translateY(-50%)}to{opacity:1;transform:translateX(0) translateY(-50%)}}.popup-window.popup-position-right{animation:slideInRight .3s ease-out}@keyframes slideInRight{0%{opacity:0;transform:translateX(20px) translateY(-50%)}to{opacity:1;transform:translateX(0) translateY(-50%)}}.popup-window .popup-header{background:white;color:inherit;border-bottom:1px solid #e0e0e0}.popup-window .popup-header h3{color:inherit;font-size:18px}.popup-window .popup-close{color:#666;opacity:1}.popup-window .popup-close:hover{background-color:#f5f5f5}.popup-window .popup-content{padding:20px;flex:1 1 auto;min-height:0;overflow:auto;-webkit-overflow-scrolling:touch}.popup-window .popup-content img{border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.1)}.popup-modal .popup-dont-show-again,.popup-window .popup-dont-show-again{background:linear-gradient(180deg,#f9f9f9,#f5f5f5);padding:12px}.popup-modal .popup-dont-show-again-btn,.popup-window .popup-dont-show-again-btn{background:white;border:1px solid #667eea;color:#667eea;font-weight:500}.popup-modal .popup-dont-show-again-btn:hover,.popup-window .popup-dont-show-again-btn:hover{background:#667eea;color:white;border-color:#667eea}@media (max-width:768px){.popup-window{max-width:calc(100vw - 40px);max-height:calc(100vh - 40px)}.popup-window.popup-position-bottom-left,.popup-window.popup-position-bottom-right,.popup-window.popup-position-left,.popup-window.popup-position-right,.popup-window.popup-position-top-left,.popup-window.popup-position-top-right{left:20px!important;right:20px!important;transform:none!important}.popup-window.popup-position-center{width:calc(100vw - 40px);left:20px!important;transform:translateY(-50%)!important}}.popup-window .popup-header.draggable{cursor:move;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.popup-window .popup-header.draggable:active{cursor:-webkit-grabbing;cursor:grabbing}.popup-window.dragging{opacity:.95;box-shadow:0 16px 64px rgba(0,0,0,.35);transition:none!important}.popup-window.dragging *{user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.popup-window .popup-header.draggable:after{content:"";position:absolute;top:50%;left:10px;transform:translateY(-50%);width:20px;height:2px;background:linear-gradient(90deg,rgba(255,255,255,.3),rgba(255,255,255,.3) 25%,transparent 0,transparent 50%,rgba(255,255,255,.3) 0,rgba(255,255,255,.3) 75%,transparent 0);background-size:8px 2px}