@font-face {
    font-family: 'Ubuntu';
    font-weight: normal;
    src: url('../fonts/ubuntu/Ubuntu-Regular.ttf') format('truetype')
}

@font-face {
    font-family: 'Ubuntu';
    font-weight: normal;
    font-style: italic;
    src: url('../fonts/ubuntu/Ubuntu-Italic.ttf') format('truetype')
}

@font-face {
    font-family: 'Ubuntu';
    font-weight: bold;
    src: url('../fonts/ubuntu/Ubuntu-Bold.ttf') format('truetype')
}

@font-face {
    font-family: 'Ubuntu';
    font-weight: bold;
    font-style: italic;
    src: url('../fonts/ubuntu/Ubuntu-BoldItalic.ttf') format('truetype')
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:hover {
    opacity: 0.6;
}

html {
    min-height: 100vh;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    margin: 0;
    /*     background-color: #121551; */
    color: #FFFFFF;
    text-align: left;
    padding: 50px;
    background: #ffaa3c;
    background: linear-gradient(109deg, #ffaa3c 0%, rgba(2, 0, 36, 1) 50%, rgba(0, 212, 255, 1) 100%);
}

/** APP **/

#title,
#content {
    display: inline-block;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    border: 1px solid white;
    margin: 20px auto;
    box-shadow: 0 0 20px 7px rgba(0, 0, 0, 0.3);
}

.domain {
    margin: 50px 0;
}

h2 {
    font-weight: normal;
}

.toggle-details {
    display: inline-block;
    font-size: 0.7em;
    border: 1px solid;
    border-radius: 10px;
    padding: 7px 10px;
    margin: 2px 0 20px 0;
    cursor: pointer;
}

.toggle-details.show {
    background-color: white;
    color: #121551;
}

.head {
    cursor: pointer;
}

.table {
    border: 1px solid white;
    overflow-x: auto;
}

.thead,
.tbody {
    display: inline;
}

.details .thead,
.details .tbody {
    display: inline-block;
}

.thead .tr,
.tbody .tr {
    display: flex;
    justify-content: space-around;
}

.thead .tr .th,
.tbody .tr .td {
    min-width: 300px;
    text-align: center;
    padding: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.thead .tr .th {
    position: relative;
    font-weight: bold;
    border-width: 0 0 1px 0;
    border-style: solid;
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thead .tr .th:before,
.thead .tr .th:after {
    border: 10px solid transparent;
    content: "";
    display: block;
    height: 0;
    right: 10px;
    top: 45%;
    position: absolute;
    width: 0;
}

.thead .tr .th:before {
    border-bottom-color: #FFFFFF;
    margin-top: -20px;
}

.thead .tr .th:after {
    border-top-color: #FFFFFF;
    margin-top: 5px;
}

.thead .tr .th.selected.asc:after {
    display: none;
}

.thead .tr .th.selected.desc:before {
    display: none;
}

.list.hide,
.th.hide:not(.date):not(.COUNTRY):not(.redirection):not(.redirectionTab):not(.source),
.td.hide:not(.date):not(.COUNTRY):not(.redirection):not(.redirectionTab):not(.source) {
    display: none;
}

.th {
    cursor: pointer;
}

.td {
    width: 100px;
}

.selected {
    background-color: rgba(255, 255, 255, 0.2);
    border: solid 1px white;
}

#refreshed {
    color: #121551;
}

img {
    display: block;
    max-width: 100%;
    width: 500px;
    margin: 50px auto;
    text-align: center;
}