seo-toast{--toast-container-top: 1rem;--toast-container-right: 1rem;--toast-container-z-index: 200000;--toast-gap: 1rem;--toast-padding: .5rem .5rem 1rem .5rem;--toast-border-radius: .5rem;--toast-min-width: 20rem;--toast-max-width: 20rem;--toast-box-shadow: 0 2px 2px rgba(0, 0, 0, .1);--toast-bg-color: #ffffff;--toast-title-color: #1f2937;--toast-desc-color: #374151;--toast-close-color: rgb(172.631, 180.706, 189.099);--toast-close-hover-color: rgb(1.6807053751, 8.9876744754, 37.9342946249);--toast-success-bg: #dcfce7;--toast-error-bg: #fee2e2;--toast-warning-bg: #fef3c7;--toast-info-bg: #dbeafe;--toast-enter-duration: .3s;--toast-exit-duration: .2s}.toast-container{position:fixed;display:flex;flex-direction:column;z-index:200000;will-change:transform,height}.toast-container--top-right{top:1rem;right:1rem}.toast-container--top-left{top:1rem;left:1rem}.toast-container--top-center{top:1rem;left:50%;transform:translate(-50%)}.toast-container--bottom-right{bottom:1rem;right:1rem;flex-direction:column-reverse}.toast-container--bottom-left{bottom:1rem;left:1rem;flex-direction:column-reverse}.toast-container--bottom-center{bottom:1rem;left:50%;transform:translate(-50%);flex-direction:column-reverse}.toast{position:relative;display:flex;align-items:center;gap:var(--toast-gap, 1rem);margin-bottom:1rem;padding:var(--toast-padding, .5rem .5rem 1rem .5rem);background-color:var(--toast-bg-color, #ffffff);color:var(--toast-desc-color, #374151);filter:drop-shadow(var(--toast-box-shadow, 0 2px 2px rgba(0, 0, 0, .1)));border:1px solid rgb(217.9625599919,221.593505227,225.3674400081);min-width:var(--toast-min-width, 20rem);max-width:var(--toast-max-width, 20rem);border-radius:var(--toast-border-radius, .5rem);overflow:hidden;text-align:left;transition:margin-bottom .3s ease-out 0s,opacity .3s ease-out .2s,transform .3s ease-out .2s}.toast.toast--enter-slide{margin:0;opacity:0;transform:translate(10%)}.toast.toast--enter-fade{margin:0;opacity:0;transform:scale(1)}.toast.toast--enter-scale{margin:0;opacity:0;transform:scale(.8)}.toast.toast--enter-bounce{margin:0;opacity:0;transform:scale(.3);transition:margin-bottom .3s ease-out 0s,opacity .3s ease-out .2s,transform .3s cubic-bezier(.68,-.55,.265,1.55) .2s}.toast.toast--enter-flip{margin:0;opacity:0;transform:rotateY(90deg);transform-style:preserve-3d;perspective:1000px;transition:margin-bottom .3s ease-out 0s,opacity .3s ease-out .2s,transform .3s ease-out .2s}.toast.toast--exit-slide{opacity:0;transform:translateY(10%);transition:opacity .2s ease-out 0s,transform .2s ease-out 0s,margin-bottom .3s ease-out .2s}.toast.toast--exit-fade{opacity:0;transform:scale(1);transition:opacity .2s ease-out 0s,margin-bottom .3s ease-out .2s}.toast.toast--exit-scale{opacity:0;transform:scale(.8);transition:opacity .2s ease-out 0s,transform .2s ease-out 0s,margin-bottom .3s ease-out .2s}.toast.toast--exit-bounce{opacity:0;transform:scale(.3);transition:opacity .2s ease-out 0s,transform .2s cubic-bezier(.6,-.28,.735,.045) 0s,margin-bottom .3s ease-out .2s}.toast.toast--exit-flip{opacity:0;transform:rotateY(-90deg);transform-style:preserve-3d;perspective:1000px;transition:opacity .2s ease-out 0s,transform .2s ease-in 0s,margin-bottom .3s ease-out .2s}.toast__content{display:flex;align-items:flex-start;gap:1rem;padding:.5rem .5rem 1rem;position:relative;flex:1}.toast--success .toast__icon-wrapper{background-color:var(--toast-success-bg, #dcfce7);color:#4ec470}.toast--error .toast__icon-wrapper{background-color:var(--toast-error-bg, #fee2e2);color:#e73f45}.toast--warning .toast__icon-wrapper{background-color:var(--toast-warning-bg, #fef3c7);color:#f9a559}.toast--info .toast__icon-wrapper{background-color:var(--toast-info-bg, #dbeafe);color:#3253de}.toast__icon-wrapper{width:2rem;height:2rem;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}.toast__icon-wrapper svg{width:1.2rem;height:1.2rem}.toast__icon-wrapper img{width:1.2rem;height:1.2rem;object-fit:cover;border-radius:50%}.toast__message{display:flex;flex-direction:column;gap:.5rem;flex:1;min-width:0;padding-right:2rem}.toast__message .toast__title{font-weight:700;font-size:.9rem;color:var(--toast-title-color, #1f2937);display:flex;align-items:center;gap:.5rem;margin:0}.toast__message .toast__desc{font-size:.9rem;line-height:1.4;color:var(--toast-desc-color, #374151);word-break:break-word;margin:0}.toast__message .toast__count{font-size:.9rem;font-weight:500;color:#96a0ab;background-color:#fff;padding:.2rem .5rem;border-radius:1rem;white-space:nowrap}.toast__close{position:absolute;top:.75rem;right:.75rem;background:none;border:none;color:var(--toast-close-color, rgb(172.631, 180.706, 189.099));cursor:pointer;width:2.4rem;height:2.4rem;display:flex;align-items:center;justify-content:center;border-radius:.25rem;padding:0;z-index:1}.toast__close svg{width:1.6rem;height:1.6rem}.toast__close:hover{color:var(--toast-close-hover-color, rgb(1.6807053751, 8.9876744754, 37.9342946249))}.toast__close:focus{outline:2px solid #3253de;outline-offset:2px}.toast__progress{position:absolute;bottom:0;left:0;width:100%;height:3px;background-color:transparent;overflow:hidden}.toast__progress-bar{position:absolute;top:0;left:0;height:100%;width:100%;transform-origin:left center;animation:toast-progress linear forwards}.toast__progress-bar--success{background-color:#4ec470}.toast__progress-bar--error{background-color:#e73f45}.toast__progress-bar--warning{background-color:#f9a559}.toast__progress-bar--info{background-color:#3253de}@keyframes toast-progress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1.15}ol,ul,li{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}a{color:inherit;text-decoration:none}button{font-family:inherit;font-size:90%;margin:0;cursor:pointer;background:transparent;border:none}html,body{width:100%;height:100%}body{position:relative}*,*:before,*:after{box-sizing:border-box}:focus{outline:0}:root{--c-primary: #8B5CF6;--c-primary-light: #A78BFA;--c-primary-dark: #7C3AED;--c-primary-pastel: #DDD6FE;--c-primary-soft: #EDE9FE;--c-secondary: #C4B5FD;--c-accent-pink: #F0ABFC;--c-accent-blue: #A5B4FC;--c-accent-mint: #A7F3D0;--text-primary: #1F2937;--c-text-secondary: #6B7280;--c-text-action: #7C3AED;--c-text-muted: #9CA3AF;--c-accent-primary: #8B5CF6;--c-accent-warning: #F472B6;--c-accent-success: #34D399;--c-accent-success-secondary: #10B981;--c-background-primary: #E8E4F0;--c-background-secondary: #E8E4F0;--c-background-tertiary: #F3F0F8;--c-background-quaternary: #DDD8E8;--c-border-primary: #D4D0E0;--shadow-light: #FFFFFF;--shadow-dark: #C5C0D0;--neu-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);--neu-shadow-sm: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);--neu-shadow-inset: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);--neu-shadow-pressed: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light)}body{line-height:1.5;min-height:100vh;font-family:Be Vietnam Pro,sans-serif;background-color:var(--c-background-secondary);color:var(--text-primary)}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-thumb{background-color:var(--text-primary);border:4px solid var(--c-background-primary);border-radius:99em}::-webkit-scrollbar-track{background-color:transparent}.swal2-icon{margin:1.5em auto .6em!important}
