/*Muse elements transitions*/

/*User elements transitions*/
.transition {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
}

/*Cursor Work-Gallery*/
.work-gallery .Thumb {
    cursor: url(../assets/cross-cursor.png), crosshair !important;
}

/*Logo, Menu-Top Fixed*/
.logo, .menu-top {
    position: fixed !important;
}

#u7731 {
    position: fixed;
    right: 20px !important;
    left: auto !important;
    top: 15px;
}

#u7723 {
    position: fixed;
}

/*404,500 Page*/
.block404 h1 span {
    position: relative;
}

.block404 h1 span:after {
    content: "";
    width: 3px;
    background-color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: 20px;
    -webkit-animation: blink 0.4s infinite;
    -moz-animation: blink 0.4s infinite;
    -ms-animation: blink 0.4s infinite;
    -o-animation: blink 0.4s infinite;
    animation: blink 0.4s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}