@charset "UTF-8";

.banner-wrapper-default {
    position: relative;
    opacity: 0.9;
}

.banner-wrapper-default * {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

.banner-wrapper-default .banner {
    margin: 0;
    padding: 0;
}

.banner-wrapper-default .logo-wrapper {
    position: absolute;
    top: 0;
    overflow: hidden;
}

@media (max-width: 1220px) {
    .banner-wrapper-default .logo-wrapper {
        display: none;
    }
}

.banner-wrapper-default .logo-wrapper.logo-rtl {
    right: 0;
    background: #fff url("../img/shine-rtl.jpg") 0 0;
    animation: Note_Shine_RTL 3000ms ease-in-out infinite;
}

.banner-wrapper-default .logo-wrapper.logo-ltr {
    left: 0;
    background: #fff url("../img/shine-ltr.jpg") 100% 0;
    animation: Note_Shine_LTR 3000ms ease-in-out infinite;
}

@keyframes Note_Shine_RTL {
    0% {
        background-position: 0 0;
    }
    1% {
        background-position: 0 0;
    }
    99% {
        background-position: 180% 0;
    }
    100% {
        background-position: 180% 0;
    }
}

@keyframes Note_Shine_LTR {
    0% {
        background-position: 100% 0;
    }
    1% {
        background-position: 100% 0;
    }
    99% {
        background-position: -80% 0;
    }
    100% {
        background-position: -80% 0;
    }
}
