.bg-animated {
    background: gray url(../images/bg.jpg) repeat 0 0;
    -webkit-animation: slide 20s linear infinite;
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -400px 0;
    }
}

.validation-summary-errors {
    text-align: center;
    color: red;
    background: #ffff76;
    border-radius: 10px;
}

.validation-summary-errors ul {
    list-style: none;
    padding: 0;
}

input[type="file"] {
    display: none;
}

.custom-file-upload {
    display: block;
    cursor: pointer;
}

.custom-file-upload .btn {
    margin-top: 10px;
}

.form-group label {
    font-weight: bold;
}

.movie-access-item {
    border: 1px solid #c0c0c0;
    background: #cccccc;
    display: inline-block;
    margin-bottom: 5px;
    cursor: pointer;
}

    .movie-access-item .movie-item {
        padding: 5px;
    }

    .movie-access-item .active {
        background: #229922;
        color: #ffffff;
    }