#app table {
    width: 100%;
}


#app .table-preloader {
    display: block;
    background: url('../assets/loader.gif') no-repeat center center;
    padding: 10px;
}

#app .table-holder {
    overflow-x: auto;
    display: block;
    /*width: 100%;*/
}

#app .video-link {
    color: blue;
}

#app .pagination {
    display: table;
    margin: 0 auto;
}

#archives-main {
    margin-top: 15px;
}

#year-selector + span {
    padding: 2px 5px;
    font-size: small;
}

.modal-mask, .loading-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: table;
    transition: opacity .3s ease;
}

.modal-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.modal-container {
    width: 640px;
    margin: 0px auto;
    /*padding: 20px 30px;*/
    background-color: #000;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.modal-header{
    padding: 8px;
}
.modal-header h3 {
    color: #777;
    display: inline;
}

.modal-body {
    /*margin: 20px 0;*/
}

.modal-close-button {
    float: right;
    cursor: pointer;
    color: #AAA;
}

.modal-enter {
    opacity: 0;
}

.modal-leave-active {
    opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#app .login-page-form *:not(div) {
    margin: 3px
}
#app .login-page-form label {
    width: 60px;
    display: inline-block;
}
#app .login-page-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#app .login-page-form fieldset {
    margin: 130px auto;
    display: table;
}

#app fieldset p {
    max-width: 242px;
}

#app .formErrors, #dialog-form .formErrors {
    padding: 0.4em;
    margin-bottom: 10px;
}

#app.admin .listingTable .action-column {
    white-space: nowrap;
}

#app.admin .listingTable .action-column img {
    filter: contrast(30%);
    cursor: pointer;
}

#app.admin input[type='password'],
#app.admin input[type='text'],
#dialog-form input[type='text'],
#dialog-form textarea {
    padding: .4em;
}

#dialog-form input[type='text'],
#dialog-form textarea {
    margin-bottom: 12px;
}

#dialog-form label {
    width: 100px;
    display: inline-block;
}

#dialog-form .input-required:after {
    content: "*";
    color: red;
}

#dialog-form input, #dialog-form textarea {
    width: 336px;
    resize: none;
}

#dialog-form textarea {
    margin-left: 4px;
}

#dialog-form input[type='checkbox'] {
    width: initial;
    margin-left: 0px;
}

#app .pagination input {
    padding: inherit !important;
    margin: inherit !important;
}

#app #video-name {
    white-space: nowrap;
    display: inline-block;
    width: calc(100% - 30px);
    margin: 0;
    overflow: hidden;
}

#app .expandable span {
    height: 2.8em;
    overflow: hidden;
    display: inline-block;
}

#app .expandable {
    position: relative;
}

#app .expandable-btn {
    position: absolute;
    bottom: -3px;
    display: block;
    cursor: pointer;
    right: 3px;
    bottom: -3px;
    color: blue;
    font-size: smaller;
}

.ui-state-success {
    border: 1px solid #009c00;
    background: #e6fde3;
    color: #009c00;
}