* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
}

.hidden {
    display: none !important;
}

header {
    background-color: #171c3d;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 16px;
}

.m-auto {
    margin: 0 auto;
}

.mt-16 {
    margin-top: 16px !important;
}

.mb-4 {
    margin-bottom: 4px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.w-30 {
    width: 30px;
}

.w-100 {
    width: 100px;
}

.w-200 {
    width: 200px;
}

.ta-center {
    text-align: center;
}

.ta-right {
    text-align: right;
}

.table-wrapper {
    border-collapse: collapse;
}

.table {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}

.table-row {
    display: table-row;
    border-collapse: collapse;
}

.table-row.table-header {
    font-weight: bold;
}

.table-cell {
    display: table-cell;
    border: 1px solid #cccccc;
    border-collapse: collapse;
}

.va-top {
    vertical-align: top;
}

.va-middle {
    vertical-align: middle;
}

.pt-20 {
    padding-top: 20px;
}

.pl-4 {
    padding-left: 4px;
}

.pr-4 {
    padding-right: 4px;
}

.plr-4 {
    padding-left: 4px;
    padding-right: 4px;
}

.ptb-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

button,
.button {
    font-size: 14px;
    display: block;
    background-color: #171c3d;
    border: none;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    height: 40px;
    color: #ffffff;
    padding: 0;
    outline: none;
    cursor: pointer;
}

input[type="text"],
input[type="password"],
textarea {
    font-size: 14px;
    display: block;
    width: 100%;
    outline: none;
    -webkit-appearance: none;
    border: 1px solid #cccccc;
    line-height: 18px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: inset 0 3px 5px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 3px 5px -3px rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 3px 5px -3px rgba(0,0,0,0.2);
}

input, select {
    height: 40px;
    width: 300px;
}

select {
    cursor: pointer;
}

select.mapping-select {
    width:100%;
}

/** NO GROUPING HERE !!! **/
input::-webkit-input-placeholder{
    font-style: italic;
}

input:-moz-placeholder{
    font-style: italic;
}

input::-moz-placeholder{
    font-style: italic;
}

input:-ms-input-placeholder{
    font-style: italic;
}

label {
    display: block;
    font-weight: bold;
    margin: 16px 0 4px 0;
}

label.mapping-label {
    margin: 0;
    font-weight: normal;
}