/* Genereal */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    color: #031119;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    font-size: 16px;
    letter-spacing: 0.36px;
    line-height: 19px;
}

img {
    max-width: 100%;
}

table {
    width: 100%;
}

h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.8px;
    line-height: 43px;
}

h2 {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.53px;
    line-height: 43px;
}

table,
tr,
td {
    margin: 0;
    padding: 0;
    border-spacing: 0;
}

.btn {
    padding: 8px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.31px;
    line-height: 16px;
    border-radius: 17.5px;
    background-color: #FE4005;
    border: 2px solid #FE4005;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    color: #FE4005;
    background: #fff;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

#logo {
    position: fixed;
    top: 48px;
    left: 0;
    z-index: 1;
}

/* Message */
.msg {
    padding: 0 15px;
    width: 100%;
    max-width: 990px;
    margin: 0 auto;
}

/* Files Table */
.files_table {
    width: 100%;
    margin-top: 96px;
    margin-bottom: 80px;
}

.files_table .files_table_header {
    width: 100%;
    max-width: 990px;
    margin: 0 auto 32px;
    padding: 0 15px;
}

.files_table .files_table_header h1 {
    margin-right: 24px;
}

.files_table .table_container {
    overflow-x: auto;
}

.files_table table table {
    position: relative;
    width: 990px;
    margin: 0 auto;
    padding: 0 15px;
}

.files_table .table_container table table thead td,
.files_table .table_container table table td span {
    padding: 10px 0;
}

.files_table .table_container table table thead td {
    font-weight: bold;
}

.files_table .table_container > table > tbody > tr:nth-child(odd) > td {
    background-color: #F9F9F9;
}

.files_table table table td:nth-child(1) {
    width: 350px;
}

.files_table table table td:nth-child(2) {
    width: 120px;
}

.files_table table table td:nth-child(3) {
    width: 120px;
}

.files_table table table td:nth-child(4) {
    width: 150px;
}

.files_table table table td:nth-child(5) {
    width: 150px;
}

.files_table table table td:nth-child(6) {
    width: 20px;
}

.files_table table tbody tr td .file_icon {
    flex-shrink: 0;
    width: 24px;
    height: 41px;
    margin-right: 10px;
}

td.file {
    cursor: pointer;
}

.btn.download {
    display: inline-block;
    padding: 5px 18px;
}