@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;
}
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;
}
.field_info {
    padding: 0 5%;
}
.field_info h1 {
    padding: 10px 0;
}
input {
    padding: 5px 10px;
    border-radius: 5px;
    width: 100%;
    border: none;
    background-color: #3f3f3f;
    margin: 0 5px 10px 0;
    color: #ffffff;
    outline: none;
}
button {
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    background-color: #3f3f3f;
    margin: 0 5px 10px 0;
    color: #ffffff;
    outline: none;
}
button:hover {
    cursor: pointer;
}
button#delete {
    background-color: #ef4040;
}
.field {
    padding: 10px;
    background-color: #181818;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.field.add {
    background-color: #343434;
    justify-content: center;
    align-items: center;
}
.field > div > span:first-child {
    color: #696969;
}
.field_info > div > label {
    display: block;
    text-decoration: underline;
    margin-bottom: 5px;
}
.search.hidden {
    display: unset;
    visibility: hidden;
}
.hidden {
    display: none;
}
@media screen and (max-width: 1000px) {
    body {
        padding: 0;
    }
    .field_list {
        grid-template-columns: 1fr;
    }
    .title {
        display: none;
    }
}
@media screen and (min-width: 2300px) {
    .field_list {
        grid-template-columns: repeat(3, 1fr);
    }
}