@charset "UTF-8";
.dis_logo_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dis_logo {
    display: inline-block;
    position: relative;
    z-index: 21;
    width: 50px;
    height: 28px;
}

.dis_logo::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/dis/logo-w.png");
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-animation: blur 6s infinite;
    animation: blur 6s infinite;
}

.dis_logo::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/dis/dis-b.png");
}

@keyframes blur {
    0%   {
        filter: blur(3px);
    }
    50% {
        filter: blur(10px);
    }
    100% {
        filter: blur(3px);
    }
}
