@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'Bebas Neue';
    src: url('/fileservice/file/download/h/c1de34820f3d0ac4a5a06a0845b0190b.otf/a/395873/sc/160') format('opentype'),
        url('/fileservice/file/download/h/3ba061dc2e931028146c52c6e5f75aa5.woff/a/395873/sc/131') format('woff');
}


:root {
    --color-1: #FFFFFF;
    --color-2: #161616;
    --color-3: linear-gradient(90deg, #1f1f1f 0%, #464646 100%);
    --color-4: #EBF2F9;
    --color-5: #7FCACF;
    --color-6: #149DFB;
    --color-7: #62C1C7;
    --color-8: #555353;
    --color-9: #A6A5A6;
    --color-10: #4A4A49;
    --font-1: "Inter";
    --font-2: "Bebas Neue";
}


body {
    background: var(--color-1);
}

.gc-account-logo,
.logo-text,
.page-header h1 {
    display: none;
}

.content-menu {
    border-bottom: none !important;
}

.breadcrumbs a,
.page-header a {
    font-family: var(--font-1) !important;
    font-weight: 500;
    color: var(--color-2);
}

.split{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.split p{
    margin: 0;
    font-family: var(--font-1) !important;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-2);
}

/*Модули*/
.stream-table {
    margin: 0 !important;
}

.stream-table tbody {
    display: flex;
    flex-wrap: wrap;
    counter-reset: list 0;
    position: relative;
}

.stream-table tbody tr {
    position: relative;
    flex: 0 0 calc(100% - 0px);
    height: 160px;
    border-radius: 20px;
    margin: 10px 0;
    background: var(--color-3);
    transition: 0.5s;
}

.stream-table tbody tr:hover {
    transform: scale(1.02);
    transition: 0.5s;
}

.stream-table tbody tr td {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    padding: 15px !important;
}

.stream-table tr td:hover {
    background: none !important;
}

.stream-table tr a {
    height: 100%;
    width: 100%;
    z-index: 2;
    position: relative;
    display: flex!important;
    flex-direction: column;
    justify-content: center;
}

/*Заголовок*/
.stream-table tbody tr td .stream-title {
    font-family: var(--font-2), sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    color: var(--color-1);
}

.stream-table tbody tr div {
    font-family: var(--font-1), sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: var(--color-2);
    position: absolute;
    bottom: 10px;
    right: 30px;
    padding: 10px 30px;
    background: var(--color-4);
    border-radius: 90px;
}

@media(max-width: 500px) {
    .split p{
        font-size: 12px;
    }
    
    .stream-table tbody tr {
        height: 200px;
    }

    .stream-table tr a {
        justify-content: flex-start;
    }

    .stream-table tbody tr td .stream-title {
        margin-top: 40px;
        font-size: 24px;
    }
    
    .stream-table tbody tr div{
        padding: 5px 20px;
        font-size: 10px;
    }
}