@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&family=Source+Code+Pro:wght@200&family=Ubuntu:wght@300&display=swap');
html,
body {
    -webkit-tap-highlight-color: transparent;
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    background-color: #F8F9FA;
}
a {
    color: inherit;
    text-decoration: none;
}
* {
    box-sizing: border-box;
}
.title-small {
    font-weight: lighter;
    color: #495057;
}
.title {
    color: #212529;
    opacity: 0.8;
    font-size: 2rem;
    font-family: 'PT Sans Narrow', sans-serif;
    user-select: none;
}
.top-bar {
    background-color: #F8F9FA;
    padding: 0.5rem;
    border-bottom: 3px solid #E9ECEF;
    width: 100%;
    max-height: 100px;
    overflow: hidden;
    position: fixed;
}
.search {
    height: 100%;
    background-color: transparent;
    font-size: 1.9rem;
    border: none;
    font-family: 'Source Code Pro', sans-serif;
    outline: transparent;
    caret-color: #495057;
}
.tool-list {
    padding-top: 75px;
}
.listed-tool {
    margin: 10px 20%;
    padding: 10px;
    background-color: #DEE2E6;
    border-radius: 5px;
    border-bottom: 3px solid #495057;
    font-family: 'Nunito', sans-serif;
    user-select: none;
}
.span-right {
    float: right;
}
.tag {
    background-color: #495057;
    color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    margin-right: 10px;
}
.button-slim {
    background-color: #495057;
    color: #fff;
    padding: 0 5px;
    border-radius: 3px;
    margin-right: 10px;
}
.button-loader {
    background-color: #6b6b6b;
    color: #fff;
    padding: 0 5px;
    border-radius: 3px;
    margin-right: 10px;
    margin-bottom: 5px;
}
.tool {
    margin-top: 10px;
    display: none;
    user-select: text;
}
.input-i {
    margin-right: 10px;
    margin-bottom: 10px;
}
.input-real {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #414141;
    outline: 0;
    color: #000;
    padding: 3px 0;
    background: transparent;
    transition: border-color 0.2s;
}
.description {
    margin-left: 5px;
    float: right;
}
.result {
    margin: 5px 0;
    padding: 3px;
    background-color: #eeeeee;
}
.result[error] {
    background-color: #ffdddd;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.contribute {
    position: fixed;
    right: 10px;
    bottom: 10px;
}
.contribute * {
    margin: 5px;
}
.contribute:hover {
    animation-duration: 0.5s;
    animation-name: shake;
}

@keyframes shake {
    30% {
        transform: rotate(0deg);
    }
    60% {
        transform: rotate(-2deg);
    }
}