/**
 * 	Generic
 */
.hidden {
    display: none;
}

.disable-animation {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -o-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
}

/**
 * Warning Notes
 */
.warning-note {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ff0000;
    color: #fff;
    font-weight: bold;
    text-align: center;
    z-index: 99999;
}

.warning-note a, .warning-note a:hover {
    color: #000;
}

.warning-note .note-content {
    padding: 30px;
}

.warning-note ul li {
    list-style: none;
}