/*----------------------------------------------------
/* PAGE CSS
/* ----------------------------------------------------*/

.action-buttons-container {
    position: relative;
    top: 0;
    padding: 10px 20px 20px 20px;
}

.page-title {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 800;
    padding: 20px;
}

.links-title {
    font-size: 18px;
    font-weight: 800;
    padding: 40px 20px 20px 20px;
}

.table-container {
    margin-left: 40px;
    margin-right: 20px;
}

.table-row-item {
    position: relative;
    min-height: 50px;
    line-height: 50px;
    padding-left: 20px;
    padding-right: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    color: #43647f;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    margin-bottom: 12px;
    box-shadow: 0 2px 2px rgba(189, 193, 206, 1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    -o-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.table-row__text {
    position: relative;
    float: left;
    vertical-align: middle;
}

.table-row__btn_edit {
    position: relative;
    width: 35px;
    height: 50px;
    background-color: transparent;
    background-image: url('/images/btn-edit-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 33px 33px;
    cursor: pointer;
    float: right;
}

.table-row__btn_delete {
    position: relative;
    width: 35px;
    height: 50px;
    background-color: transparent;
    background-image: url('/images/btn-delete-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 33px 33px;
    cursor: pointer;
    float: right;
}

.table-row__btn_settings {
    position: relative;
    width: 35px;
    height: 50px;
    background-color: transparent;
    background-image: url('/images/btn-settings-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 33px 33px;
    cursor: pointer;
    float: right;
}

.files-table-container {
    margin-left: 40px;
    margin-right: 20px;
}

.files-table-header {
    position: relative;
    display: table;
    width: 96%;
    height: 50px;
    padding-left: 20px;
    padding-right: 10px;
    margin-bottom: 1px;
    background-color: #f6f7f9;
    color: #8f949f;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 1px 6px rgba(189, 193, 206, 1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.files-table-row-item {
    position: relative;
    display: table;
    width: 96%;
    min-height: 50px;
    padding-left: 20px;
    padding-right: 10px;
    background-color: #ffffff;
    border-radius: 2px;
    color: #43647f;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    margin-bottom: 1px;
    box-shadow: 0 2px 2px rgba(189, 193, 206, 1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    -o-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.files-table-row__text {
    position: relative;
    display: table-cell;
    padding-right: 10px;
    vertical-align: middle;
    word-break: break-all;
}

.row-item__placeholder {
    opacity: 0;
}

.files-links-hide {
    display: none;
}

.file-drop-container {
    position: relative;
    display: block;
    margin: 10px 20px;
    height: 200px;
}

.file-drop-area {
    margin: 0 auto;
    width: 99%;
    height: 200px;
    background-color: #ffffff;
    border: 2px dashed #cbced0;
    border-radius: 4px;
}

.icon-file-upload {
    margin: 0 auto;
    width: 73px;
    height: 54px;
    margin-top: 20px;
    margin-bottom: 10px;
    background-image: url('/images/file-upload.svg');
    background-size: 100% 100%;
}

.file-drop-text {
    font-family: "Gotham SSm A", "Gotham SSm B";
    font-size: 20px;
    font-weight: 500;
    margin: 0 auto;
    color: #909aa1;
    text-align: center;
}

.fileUploadForm {
    margin: 0 auto;
    text-align: center;
}

#fileElem {
    display: none;
}

.drop-area-highlight {
    border: 2px dashed #43647f;
}

.file-upload-preview-container {
    padding: 10px 30px 0px 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.previewItem {
    position: relative;
    display: inline-block;
    width: 125px;
    height: 125px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(189, 193, 206, 1);
}

.image-thumbnail-container {
    width: auto;
    height: 100px;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #e8eaef;
    background-image: url('/images/file-preview-image.png');
    background-size: 100% 100%;
    overflow: hidden;
}

.image-thumbnail-container img {
    width: auto;
    height: 100px;
    margin: 0 auto;
    animation-name: fader;
    animation-duration: 0.5s;
}

.video-thumbnail-container {
    width: auto;
    height: 100px;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #e8eaef;
    background-image: url('/images/file-preview-video.png');
    background-size: 100% 100%;
    overflow: hidden;
}

.video-thumbnail-container img {
    width: auto;
    height: 100px;
    margin: 0 auto;
}

@keyframes fader {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

progress {
    width: 100%;
    background-color: #d9dce0;
    border: 0;
    height: 8px;
    border-radius: 5px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset;
}

progress::-webkit-progress-bar {
    height: 8px;
    background-color: #d9dce0;
    border-radius: 5px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset;
}

progress::-webkit-progress-value {
    height: 8px;
    background-color: #4b647c;
    border-radius: 5px;
}

progress::-moz-progress-bar {
    height: 8px;
    background-color: #4b647c;
    border-radius: 5px;
}
