/* _content/ClientPortal/Pages/Index.razor.rz.scp.css */
body[b-tjznv9uvyq] {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Jost', sans-serif;
    background: linear-gradient(to bottom, #000000, #333333, #0d0d0d);
}

.main[b-tjznv9uvyq] {
    width: 350px;
    height: 300px;
    background: red;
    overflow: hidden;
    background-color: #272727;
    border-radius: 10px;
    box-shadow: 5px 20px 50px #000;
}

#chk[b-tjznv9uvyq] {
    display: none;
}

.signup[b-tjznv9uvyq] {
    position: relative;
    width: 100%;
    height: 100%;
}

label[b-tjznv9uvyq] {
    color: #fff;
    font-size: 2.3em;
    justify-content: center;
    display: flex;
    font-weight: bold;
    cursor: pointer;
    transition: .5s ease-in-out;
}

input[b-tjznv9uvyq] {
    width: 60%;
    height: 20px;
    background: #e0dede;
    justify-content: center;
    display: flex;
    margin: 20px auto;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
}

button[b-tjznv9uvyq] {
    width: 60%;
    height: 40px;
    margin: 10px auto;
    justify-content: center;
    display: block;
    color: #fff;
    background: #573b8a;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    outline: none;
    border: none;
    border-radius: 5px;
    transition: .2s ease-in;
    cursor: pointer;
}

    button:hover[b-tjznv9uvyq] {
        background: #6d44b8;
    }

.login[b-tjznv9uvyq] {
    height: 920px;
    background: #eee;
    border-radius: 30% / 5%;
    transform: translateY(-50px);
    transition: .8s ease-in-out;
}

    .login label[b-tjznv9uvyq] {
        color: #000000;
        transform: scale(.6);
    }

#chk:checked ~ .login[b-tjznv9uvyq] {
    transform: translateY(-300px);
}

    #chk:checked ~ .login label[b-tjznv9uvyq] {
        transform: scale(1);
    }

#chk:checked ~ .signup label[b-tjznv9uvyq] {
    transform: scale(.6);
}
/* _content/ClientPortal/Pages/Pages_Apps.razor.rz.scp.css */
*[b-28e4s9m6hs] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-28e4s9m6hs] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #353540;
}

.l-container[b-28e4s9m6hs] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 30px;
}

@media screen and (max-width: 760px) {
    .l-container[b-28e4s9m6hs] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.b-game-card[b-28e4s9m6hs] {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 150%;
    perspective: 1000px;
}

.b-game-card__cover[b-28e4s9m6hs] {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
    background-size: cover;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
    transform-origin: top center;
    will-change: transform;
    transform: skewX(0.001deg);
    transition: transform 0.35s ease-in-out;
}

    .b-game-card__cover[b-28e4s9m6hs]::after {
        display: block;
        content: '';
        position: absolute;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background: linear-gradient(226deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 60%);
        transform: translateY(-20%);
        will-change: transform;
        transition: transform 0.65s cubic-bezier(0.18, 0.9, 0.58, 1);
    }

.b-game-card:hover .b-game-card__cover[b-28e4s9m6hs] {
    transform: rotateX(7deg) translateY(-6px);
}

    .b-game-card:hover .b-game-card__cover[b-28e4s9m6hs]::after {
        transform: translateY(0%);
    }

.b-game-card[b-28e4s9m6hs]::before {
    display: block;
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 12px 12px rgba(0, 0, 0, 0.4);
    will-change: opacity;
    transform-origin: top center;
    transform: skewX(0.001deg);
    transition: transform 0.35s ease-in-out, opacity 0.5s ease-in-out;
}

.b-game-card:hover[b-28e4s9m6hs]::before {
    opacity: 0.6;
    transform: rotateX(7deg) translateY(-6px) scale(1.05);
}
/* _content/ClientPortal/Shared/MainLayout.razor.rz.scp.css */
html body[b-r2k9fd67n2]{

    overflow:hidden;


}

.page[b-r2k9fd67n2] {
    
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-r2k9fd67n2] {
    flex: 1;
}

.sidebar[b-r2k9fd67n2] {
    background-image: linear-gradient(180deg, #212121 0%, #000000 70%);
}

.top-row[b-r2k9fd67n2] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 4.0rem;
    display: flex;
    align-items: center;
}

    .top-row[b-r2k9fd67n2]  a, .top-row .btn-link[b-r2k9fd67n2] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-r2k9fd67n2] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-r2k9fd67n2] {
        display: none;
    }

    .top-row.auth[b-r2k9fd67n2] {
        justify-content: space-between;
    }

    .top-row a[b-r2k9fd67n2], .top-row .btn-link[b-r2k9fd67n2] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-r2k9fd67n2] {
        flex-direction: row;
    }

    .sidebar[b-r2k9fd67n2] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-r2k9fd67n2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-r2k9fd67n2], article[b-r2k9fd67n2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/ClientPortal/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-aepehzqxdm] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-aepehzqxdm] {
    height: 4.0rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-aepehzqxdm] {
    font-size: 1.1rem;
}

.oi[b-aepehzqxdm] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-aepehzqxdm] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-aepehzqxdm] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-aepehzqxdm] {
        padding-bottom: 1rem;
    }

    .nav-item[b-aepehzqxdm]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-aepehzqxdm]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-aepehzqxdm]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-aepehzqxdm] {
        display: none;
    }

    .collapse[b-aepehzqxdm] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-aepehzqxdm] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
