@import url('https://fonts.googleapis.com/css?family=Ubuntu');

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Ubuntu', "Lucida Grande", Tahoma, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    background: #fff;
}

.header {
    width: 100%;
    padding: 15px;
    line-height: 30px;
    background: #33485e;
    color: #ffffff;
    font-weight: bold;
}

.header .selectbox {
    float: right;
}

.table {
    width: 100%;
}

.table table {
    width: 100%;
    border: none;
    border-collapse: collapse;
}


.table table tr td,
.table table tr th {
    font-size: 12px;
    font-weight:bolder;
    color: #000;
    padding: 12px;
    text-align: center;
}

.table table tr:nth-child(odd) td,
.table table tr:nth-child(odd) th {
    background: #ecf0f1;
}
.table table tr:nth-child(even) td,
.table table tr:nth-child(even) th {
    background: #e0e0e0;
}
.table table tr th:last-of-type {
    border-left: 1px solid #d4d4d4;
}
.table table tr th {
    text-align: left;
}

.disclaimer {
    width: 100%;
    color: #000;
    padding: 20px 0;
}

.select2-arrow.select2-arrow.select2-arrow {
    border: 0;
    background: none;
}

.select2-arrow > b {
    filter: contrast(0%) brightness(200%);
}
.select2-choice.select2-choice{
    border: 0;
    background: none;
    color: #fff;
    box-shadow: none;
}

@media screen and (max-width: 510px) {
    table{
        display: block;
    }
    tbody{
        width:100%;
        display:block;
    }
    tr {
        width:100%;
        display:block;
    }
    tr > * {
        display:inline-block;
        width: calc(50% - 2px);
        background:none !important;
    }
    th:nth-child(1),
    td:nth-child(2) {
        background: #e0e0e0 !important;
    }
}