@font-face {
    font-family: 'Philosopher';
    src: url('../font/Philosopher-Regular.ttf');
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Philosopher';
    position: relative;
}

.main {
    width: 781px;
    height: 480px;
    background: url('../img/bg-guide.jpg');
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.main a {

right: 25px;

width: 40px;
}

.sup {
    width: 781px;
    height: 480px;
    background: url('../img/sup-bg.png');
    left: -26px;
}

.sup ul {
    width: 660px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: auto;
    left: 22px;
    top: 50px;
    padding: 10px 10px 10px 18px;
}

.sup ul li {
    width: 150px;
    height: 48px;
}

.sup ul li a {
    display: block;
    width: 150px;
    height: 48px;
    background: url('../img/bg-input.png');
    text-align: center;
    color: #fff;
    line-height: 48px;
    text-decoration: none;
    transition: all .2s ease-in-out;
    text-transform: uppercase;
    font-size: 15px;
    color: rgb(181, 233, 253);
}

.sup ul li a:hover {
    filter: grayscale(60%);
    color: #fff;
}

.infos {
    width: 695px;
    overflow-x: auto;
    margin: auto;
    height: 380px;
    top: 45px;
    left: 20px;
}

/* TABLES */
.table {
    color: #fff;
    width: 690px;
    margin: auto;
    font-size: 13px;
    margin-bottom: 20px;
}

.table tr td {
    padding: 10px 5px;
}

.table thead {
    text-align: center;
    background-color: rgb(10 12 32);
    text-transform: uppercase;
}

.table thead {
    text-align: center;
}

.table tbody tr td {
    font-family: 'Tahoma' !important;
    border: 1px solid #000;
    background-color: #1f213a;
    border-radius: 5px;
    font-size: 11px;
}

.table tbody tr.mark td {
    background: #2e346c;
}

/* SCROLL CSS */

.infos::-webkit-scrollbar {
    width: 5px;
    /* width of the entire scrollbar */
}

.infos::-webkit-scrollbar-track {
    background: transparent;
    /* color of the tracking area */
}

.infos::-webkit-scrollbar-thumb {
    background-color: #3f437c;
    border-radius: 20px;
}