/* _content/Frontend.Shared.Library/Homer/Components/Dialog/Dialog.razor.rz.scp.css */
dialog[b-kc6jx5bndh]::backdrop{
    background-color: rgba(var(--blue-600));
    opacity: 30%;
}

.zoom-in[b-kc6jx5bndh] {
    animation: zoomIn-b-kc6jx5bndh;
    animation-duration: 300ms;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right[b-kc6jx5bndh] {
    animation: fadeInRight-b-kc6jx5bndh;
    animation-duration: 300ms;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn-b-kc6jx5bndh {
     from {
         opacity: 0;
         transform: scale3d(0.3, 0.3, 0.3);
     }

     50% {
         opacity: 1;
     }
 }

@keyframes fadeInRight-b-kc6jx5bndh {
     from {
         opacity: 0;
         transform: translate3d(100%, 0, 0);
     }

     to {
         opacity: 1;
         transform: translate3d(0, 0, 0);
     }
 }
