@font-face {
    font-family: 'Roboto Mono';
    src: url('fonts/RobotoMono.eot');
    src: local('Roboto Mono'), local('RobotoMono'),
    url('/public/fonts/RobotoMono.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Golos Text';
    src: url('GolosText-Medium.eot');
    src: url('GolosText-Medium.eot?#iefix') format('embedded-opentype'),
    url('/public/fonts/GolosText-Medium.woff2') format('woff2'),
    url('/public/fonts/GolosText-Medium.woff') format('woff'),
    url('/public/fonts/GolosText-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('Inter18pt-Regular.eot');
    src: local('Inter 18pt Regular'), local('Inter18pt-Regular'),
    url('/public/fonts/Inter18pt-Regular.eot?#iefix') format('embedded-opentype'),
    url('/public/fonts/Inter18pt-Regular.woff2') format('woff2'),
    url('/public/fonts/Inter18pt-Regular.woff') format('woff'),
    url('/public/fonts/Inter18pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

svg {
    font-family: 'Inter 18pt';
}

.t0 {
    font-size: 64px;
    fill: #707070;
    font-weight: 600;
    font-family: "Inter 18pt"
}

::-webkit-scrollbar {
    width: .6em;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #222;
    outline: 0;
}

[title]:hover::after {
    display: inline;
    position: absolute;
    background: #ffffff;
    color: #858796;
    border: 1px solid #858796;
    padding: .25rem;
    border-radius: .25rem;
    content: attr(title);
}

.topbar .navbar-search {
    text-decoration: none;
}

.img-logo {
    max-width: 10%;
}

.card-body-thumb {
    max-width: 100%;
}

html, body {
    font-family: 'Inter 18pt', 'Roboto Mono', sans-serif;
}

#wrapper {
    min-height: 100vh;
}

#wrapper #content-wrapper {
    background-color: #bbb;
}

#app {
    min-height: calc(100vh - 71px - 100px);
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

canvas {
    filter: blur(1px);
}

#wrapper #content-wrapper #content {
    z-index: 10;
}

.topbar .dropdown-list .dropdown-header {
    background: #000;
}

.sticky-footer {
    position: relative;
}

.bg-black {
    background-color: #000;
}

.bg-skyblue {
    background-color: #00b5e9;
}

.img-title {
    width: 64px;
}

.text-shadow-header {
    text-shadow: 1px 1px 1px black;
}

.short {
    height: 120px;
    overflow: hidden;
}


.table-header,
.table-body,
.table-footer {
    display: flex;
    flex-flow: wrap row;
}

.table-header,
.table-footer {
    background: #eeeeee;
    color: gray;
}

.table-header .table-col,
.table-footer .table-col {
    font-weight: bold;
}

.favs-table .table-body {
    max-height: 30vh;
    overflow-y: auto;
}

.table-body .table-row:nth-child(even) {
    background: #eee;
}

.table-body .table-row:nth-child(odd) {
    background: #fff;
}

.table-row {
    width: 100%;
    display: flex;
    flex-flow: nowrap row;
}

.favs-table .table-col {
    width: calc(100% / 2);
    padding: 1rem;
}

.result-table .table-col {
    width: calc(100% / 6);
    padding: 1rem;
}

.player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 10001;
}

.player .pause,
.player .continue {
    display: none;
}

.player .start i,
.player .continue i {
    margin-right: -2px; /* font-awesome, but dont awesome */
}

.counter-progress {
    height: 4px;
    background: #aaa;
}

.player-action {
    display: flex;
    justify-content: space-between;
}

.blog-post h1,
.blog-post h2,
.blog-post h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.blog-header {
    padding: 0 0 0.75rem;
    margin-bottom: 0;
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
}

.blog-body {
    flex: 1 1 auto;
    min-height: 1px;
}

.blog-cut p {
    margin: 0;
    padding: .75rem 0;
}

.blog-footer {
    padding: 0.75rem 0 0;
    background-color: #f8f9fc;
    border-top: 1px solid #e3e6f0;
}

.blog-action {
    display: flex;
    justify-content: space-between;
}

.blog-meta {
    display: flex;
    gap: 1rem;
}

@media (max-width: 767.98px) {
    .form-row {
        flex-direction: column;
    }

    .form-col-sm .form-check {
        padding: .5rem 0 .5rem 2.25rem;
    }
}