@font-face {
    font-family: 'Source Code Pro';
    src: url('../fonts/SourceCodePro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Source Code Pro', 'Roboto', sans-serif;
}

html {
    min-height: 100%;
    position: relative;
}

body {
    background-color: #161616;
    padding: 0 25%;
    color: #fff;
    min-height: 100vh;
    margin: 0;
}

.identity-count {
    display: none;
    margin-right: 5px;
}

.title:hover .identity-count {
    display: inline-block;
}

.user:hover {
    cursor: pointer;
}

nav {
    display: inline-grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 90%;
    background-color: #343434;
    height: 7vh;
    padding: 0 5%;
}

nav > * {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav > *:first-child {
    justify-content: flex-start;
}

nav > *.user {
    text-decoration: underline;
    justify-content: flex-end;
}

nav input {
    padding: 5px 10px 5px 30px;
    border-radius: 15px;
    width: 100%;
    border: none;
    background-color: #262626;
    color: #858585;
    margin: 0;
    outline: none;
}

nav input {
    background-image: url('../assets/search-glass.svg');
    background-position: 11px center;
    background-repeat: no-repeat;
}

.note {
    background-color: #654949;
    padding: 10px;
    margin: 0 0 10px;
}

a {
    color: #fff;
    text-decoration: none;
}

a.user {
    text-decoration: underline;
}

main {
    width: 100%;
    margin: 0;
    background-color: #202020;
    top: 0;
    bottom: 0;
    min-height: 93vh;
}

h1 {
    margin: 0;
}

.results {
    padding: 0 5%;
}

.result span {
    display: block;
}

.result .result-title {
    font-size: 1.5em;
    margin: 0;
}

.result a {
    display: block;
    width: 100%;
    height: 100%;
}

.result {
    border-radius: 5px;
    margin: 10px 0;
    padding: 10px;
    background-color: #3a3a3a;
}

.result-match-info, .result-match-data {
    display: inline-block !important;
}

input, select {
    padding: 5px 10px;
    border-radius: 5px;
    width: 100%;
    border: none;
    background-color: #3f3f3f;
    margin: 0 5px 10px 0;
    color: #ffffff;
    outline: none;
    box-sizing: border-box;
}

label {
    display: block;
    margin: 5px 0;
    text-decoration: underline;
}

button {
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    background-color: #3f3f3f;
    margin: 0 5px 10px 0;
    color: #ffffff;
    outline: none;
}

.field > input, .field > label {
    display: inline-block;
    width: unset;
    text-decoration: none;
}

.field > button.delete {
    background-color: #ef4040;
}

button#add_new_field {
    background-color: #3eda37;
}

button:hover {
    cursor: pointer;
}

button#delete {
    background-color: #ef4040;
}

.search.hidden {
    display: unset;
    visibility: hidden;
}

.hidden {
    display: none !important;
}

@media screen and (max-width: 1000px) {
    body {
        padding: 0;
    }

    .title {
        display: none;
    }
}

@media screen and (min-width: 2300px) {

}