/* /Components/Avatar.razor.rz.scp.css */
/* /Components/Chat/Chat.razor.rz.scp.css */
.chatContent[b-ieuw813222] {
    padding: 16px 2px;
    overflow-y: auto;
    display: flex;
    flex-flow: column;
    gap: 5px;
    flex: 1 1 0%;
    min-height: 0;
}

.chatMessageContainer[b-ieuw813222] {
    padding: 2px 5px;
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    align-items: center;
    /*   border: 1px solid pink;*/
}

.chatMessageContainerOwner[b-ieuw813222] {
    flex-direction: row-reverse;
}

.chatBubbleContainer[b-ieuw813222] {
    /*    border: 1px solid green;*/
    display: flex;
    flex-flow: row nowrap;
    gap: 5px;
    align-items: center;
}

.chatBubbleContainerOwner[b-ieuw813222] {
    flex-direction: row-reverse;
}

.chatBubble[b-ieuw813222] {
    background-color: #F1F1F1EB;
    padding: 2px 8px;
    display: inline-block;
    border-radius: 10px;
    border-top-left-radius: 0;
}

.chatBubbleOwner[b-ieuw813222] {
    background-color: #E5E8F8;
    border-radius: 10px;
    border-top-right-radius: 0;
}


.chatBubbleOptions[b-ieuw813222] {
    padding: 5px;
    border-radius: 5px;
    color: black;
    display: flex;
    align-items: center;
    min-width: 0px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    gap:2px;
}

.chatBubbleOptionsOwner[b-ieuw813222] {
    flex-direction: row-reverse;
}

.chatBubbleText[b-ieuw813222] {
    max-width: 450px;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: pre-line;
}


/* When hovering desktop parent, reveal the chatBubbleOptions*/
.chatBubbleDesktop:hover .chatBubbleOptions[b-ieuw813222] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.chatBubbleOptionsOverlay[b-ieuw813222] {
    margin-top: -15px;
    margin-left: 5px;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 20px;
    width: fit-content;
    align-items: center;
    height: 46px
}

.chatBubbleOptionsOverlayOwner[b-ieuw813222] {
    flex-direction: row;
}

.chatReactCounts[b-ieuw813222] {
    margin-top: -5px;
    margin-left: 5px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.chatReactCountsOwner[b-ieuw813222] {
    flex-direction: row-reverse;
}

.chatReplyingTo[b-ieuw813222] {
    background-color: #F9F3D6;
    border: 1px solid #D3D3D3;
    padding: 2px 8px;
    border-radius: 3px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.125);
    margin: 5px 0px;
    border-left: 4px solid #989898;
}

.chatReplyingTo-Sender[b-ieuw813222] {
    font-weight: 600;
    font-size: 12px;
}

.chatSender[b-ieuw813222] {
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

    .chatSender:hover[b-ieuw813222] {
        text-decoration: underline;
    }

.chatSenderOwner[b-ieuw813222] {
    cursor: default;
}

    .chatSenderOwner:hover[b-ieuw813222] {
        text-decoration: none;
    }



.sentAtText[b-ieuw813222] {
    font-size: 12px;
    color: gray;
    width: 100%;
    text-align: right;
}



.chatInput[b-ieuw813222] {
    padding: 8px;
    width: 100%;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
}

    .chatInput input[b-ieuw813222] {
        width: 100%;
        padding: 8px;
        box-sizing: border-box;
        border-radius: 4px;
        border: 1px solid #ccc;
    }

.chatButton[b-ieuw813222] {
    border-radius: 5px;
    cursor: pointer;
    background-color: #F5F5F5;
}

    .chatButton :hover[b-ieuw813222] {
        background-color: #DCDCDC;
        border-radius: 5px;
    }

    .chatButton img[b-ieuw813222] {
        width: 30px;
        padding: 4px;
    }

    .chatButton:disabled[b-ieuw813222] {
        background-color: gray;
        opacity: 0.3;
        cursor: default;
    }

.chatButton-send[b-ieuw813222] {
    width: 36px;
    padding: 4px;
}

.emoji[b-ieuw813222] {
    font-size: 15px;
    padding: 2px;
    align-self: center;
    cursor: pointer;
    background-color: white;
    border-radius: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #DCDCDC;
}

.emoji-mobile[b-ieuw813222] {
    font-size: 20px;
    padding: 4px;
    background-color: transparent;
}


.image-container .close-button[b-ieuw813222] {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 50%;
    padding: 2px 6px;
    cursor: pointer;
    display: none;
}

.image-container:hover .close-button[b-ieuw813222] {
    display: block;
}


.chat-avatar[b-ieuw813222] {
    height: 40px;
    margin-right: 5px;
}

.modal-backdrop[b-ieuw813222] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content1[b-ieuw813222] {
    background: white;
    padding: 8px; /* Small padding for the white border effect */
    border-radius: 8px;
    max-width: 90vw;
    max-height: 95vh;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

.modal-image[b-ieuw813222] {
    max-width: calc(90vw - 16px); /* Account for padding */
    max-height: calc(95vh - 16px); /* Account for padding */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.modal-close-btn[b-ieuw813222] {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.modal-content1:hover .modal-close-btn[b-ieuw813222] {
    opacity: 1;
}

.modal-close-btn:hover[b-ieuw813222] {
    background: rgba(0, 0, 0, 1);
}


.emoji-backdrop[b-ieuw813222] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.emoji-popup[b-ieuw813222] {
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}


.image-container-preview[b-ieuw813222] {
    position: relative;
    width: 200px;
}

.preview-image[b-ieuw813222] {
    width: 100%;
    border-radius: 8px;
}

.blurred[b-ieuw813222] {
    opacity: 0.6;
}

.spinner-overlay[b-ieuw813222] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader[b-ieuw813222] {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin-b-ieuw813222 1s linear infinite;
}

@keyframes spin-b-ieuw813222 {
    to {
        transform: rotate(360deg);
    }
}


.lineWithText[b-ieuw813222] {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    color: #707070; /* text color */
}

    .lineWithText[b-ieuw813222]::before,
    .lineWithText[b-ieuw813222]::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #E5E5E5; /* line color */
    }

    .lineWithText:not(:empty)[b-ieuw813222]::before {
        margin-right: 0.75em;
    }

    .lineWithText:not(:empty)[b-ieuw813222]::after {
        margin-left: 0.75em;
    }


.pageInvisible *[b-ieuw813222] {
    visibility: hidden;
}

.my-scrollable-div[b-ieuw813222]::-webkit-scrollbar {
    width: 10px;
}


/* Normal (original) scrollbar */
.my-scrollable-div.normal[b-ieuw813222]::-webkit-scrollbar-thumb {
    background: #888; /* thumb color */
}

.my-scrollable-div.normal[b-ieuw813222]::-webkit-scrollbar-track {
    background: #fff; /* track color (originally white) */
}

/* While loading (scrollbar hidden by making both white) */
.my-scrollable-div.loading[b-ieuw813222]::-webkit-scrollbar-thumb {
    background: #fff;
}

.my-scrollable-div.loading[b-ieuw813222]::-webkit-scrollbar-track {
    background: #fff;
}

/* Firefox */
.my-scrollable-div.normal[b-ieuw813222] {
    scrollbar-color: #888 #fff;
}

.my-scrollable-div.loading[b-ieuw813222] {
    scrollbar-color: #fff #fff;
}
/* /Components/Chat/ChatMembersModal.razor.rz.scp.css */
.userBox[b-weuz30jmlh] {
    display: flex;
    flex-flow: nowrap row;
    align-items: center;
    justify-content: space-between;
    padding-right:5px;
}

.chat-avatar[b-weuz30jmlh] {
    height: 60px;
    margin-right: 5px;
}

.actionButton[b-weuz30jmlh] {
    padding: 8px 10px;
    background-color: #f0b310;
    color: #0a0d51;
    border-radius: 10px;
    width: 100px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}


.checkBox[b-weuz30jmlh] {
    cursor: pointer;
    margin-right: 5px;
}

.searchContainer[b-weuz30jmlh] {
    display: flex;
    flex-flow: nowrap row;
    gap: 5px;
    border-radius: 20px;
    background-color: #F1F1F1;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-right: 20px;
    margin-left: 10px
}


.searchInput[b-weuz30jmlh] {
    font-size: 16px;
    padding: 3px 5px;
    border-radius: 5px;
    background-color: transparent;
    font-weight: 500;
    width: 100%
}
/* /Components/Chat/ChatThreadsBox.razor.rz.scp.css */
.chatThreadsBox[b-e14pkh8uwt] {
    flex: 1;
    overflow-y: auto;
    font-family: sz-font2, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    overscroll-behavior-y: contain;
}

.chatThread[b-e14pkh8uwt] {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 5px;
    border-radius: 10px;
    gap: 8px;
    margin-right: 5px;
}

    .chatThread:hover[b-e14pkh8uwt] {
        background-color: lightblue;
    }

.chatTheadSelected[b-e14pkh8uwt] {
    background-color: #F3F4FA;
}


.searchContainer[b-e14pkh8uwt] {
    display: flex;
    flex-flow: nowrap row;
    gap: 5px;
    border-radius: 20px;
    background-color: #F1F1F1;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-right: 20px;
    margin-left: 10px
}


.searchInput[b-e14pkh8uwt] {
    font-size: 16px;
    padding: 3px 5px;
    border-radius: 5px;
    background-color: transparent;
    font-weight: 500;
    width: 100%
}

input:focus[b-e14pkh8uwt] {
    background-color: white;
    outline: none;

}

.unreadMessageCount[b-e14pkh8uwt] {
    background-color: #43BD96;
    color: white;
    display: inline-block;
    min-width: 16px; /* smaller minimum circle */
    height: 16px; /* smaller height */
    line-height: 16px; /* vertically center text */
    padding: 0 4px; /* slimmer pill for multiple digits */
    border-radius: 999px; /* stays circular or pill */
    text-align: center;
    font-size: 0.7rem; /* smaller text */
    font-weight: 500;
    flex-shrink: 0;
}


.lastMessageText[b-e14pkh8uwt] {
    font-weight: 500;
    font-size: 12px;
    color: #707070;
}

.lastMessageText-Unread[b-e14pkh8uwt] {
    color: #0a0d51;
}
/* /Components/Chat/ChatToolbar.razor.rz.scp.css */

.fixedTopBox[b-vw6i2d7n5b] {
    position: fixed;
    top: 125px;
    right: 20px;
    width: 400px;
    z-index: 10;
    overflow-y: auto;
    margin-top: -10px;
}


.chatContainer[b-vw6i2d7n5b] {
    position: fixed;
    bottom: 0px;
    right: 20px;
    width: 400px;
    min-height: 400px;
    max-height: 600px;
    padding-top: 78px; /* Leave space for header */
    z-index: 17;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-top: 0;
}



.chatHeader[b-vw6i2d7n5b] {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 0 10px;
}

    .chatHeader[b-vw6i2d7n5b]::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 6px; /* how tall the fade is */
        background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0));
        pointer-events: none;
    }



.chat-avatar[b-vw6i2d7n5b] {
    height: 40px;
    margin-right: 5px;
}

.chatTitle[b-vw6i2d7n5b] {
    text-align: center;
    font-size: 30px;
    font-weight:800;
    cursor:pointer;
}

    .chatTitle:hover[b-vw6i2d7n5b] {
        color: #3b42a1;
    }



/*MOBILE VERSION*/
@media (max-width: 919.98px) {
    .chatContainer[b-vw6i2d7n5b] {
        right: 5px;
        width: calc(100% - 10px);
        bottom: 2px;
    }

    .fixedTopBox[b-vw6i2d7n5b] {
        right: 5px;
        width: calc(100% - 10px);
        top: 60px;
    }
}
/* /Components/CompCards.razor.rz.scp.css */
.compCard[b-dbwvx5dqkv] {
    display: flex;
    align-content: stretch;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    width: 395px;
    border-radius: 15px;
    padding: 20px;
    gap: 10px;
    font-family: sz-font2, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: #0a0d51;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}


.compCard img[b-dbwvx5dqkv] {
    width: 50px;
}

.compCard-box[b-dbwvx5dqkv] {
    border-radius: 10px;
    background-color: #f7f7f7;
    padding: 10px 12px;
}

.compCard-box-heading[b-dbwvx5dqkv] {
    color: dimgray;
    white-space: nowrap;
}

.compCardHeading[b-dbwvx5dqkv] {
    font-size: 1.2rem;
    font-weight: 900;
    text-align: center;
    flex-grow: 1;
}

.compCardStatus[b-dbwvx5dqkv] {
    background-color: #00a7fd;
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 5px;
    border: 1px solid #E8E8E8;
    flex-grow: 1;
}

.detailsWrapper[b-dbwvx5dqkv] {
    display: flex;
    flex-flow: row nowrap;
    gap:5px;
}

.details[b-dbwvx5dqkv] {
    flex-grow: 1;
    font-weight:700;
}


.isDeleting[b-dbwvx5dqkv] {
    opacity: 0.3;   
    pointer-events: none;
    user-select: none;
}

/*MOBILE VERSION*/
@media (max-width: 460px) {

    .compCard[b-dbwvx5dqkv] {
        width: 100%;
        max-width: 420px;
    }
}
/* /Components/CompToolbar.razor.rz.scp.css */
/* Add a black background color to the top navigation */

.comppage-screenAdjust[b-a25z59oh47] {
    padding: 0px 0px;
}

.compPageMenuItem[b-a25z59oh47] {
    position: relative;
    /* display: inline-block;*/
    /*    font-size: 17px;*/
    text-align: center;
    cursor: default;
    padding: 12px 0px;
}

    .compPageMenuItem a[b-a25z59oh47] {
        color: #0a0d51;
        text-align: center;
        padding: 12px 7px;
        text-decoration: none;
        /* font-size: 17px;*/
        font-weight: 500;
    }

        .compPageMenuItem a:hover[b-a25z59oh47] {
            border-bottom: 5px solid #f0b310;
            cursor: pointer
        }

        .compPageMenuItem a.active[b-a25z59oh47] {
            border-bottom: 5px solid #f0b310;
            font-weight: 900;
        }

    .compPageMenuItem:hover .competitors[b-a25z59oh47] {
        visibility: visible;
    }



.competitors[b-a25z59oh47] {
    visibility: hidden;
    width: 220px;
    background-color: white;
    color: #0a0d51;
    text-align: center;
    padding: 0px 0px;
    position: absolute;
    z-index: 3;
    top: 100%;
    left: 50%;
    margin-left: -110px;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    display: flex;
    flex-direction: column;
    gap: 0px;
}

    .competitors:hover a:hover[b-a25z59oh47] {
        color: #0a0d51;
        cursor: pointer;
        background-color: #EDEDED;
        border-bottom: none;
    }

    .competitors a.active[b-a25z59oh47] {
        color: #0a0d51;
        background-color: #f0b310;
        border-bottom: none;
    }



.drawerButton[b-a25z59oh47] {
    background-color: #dcdcdc; /* Gray */
    border: none;
    color: #0a0d51;
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: min(calc(0.038*100vw), 14px);
    margin: 4px 7px;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight: 500;
    width: 120px;
}

    .drawerButton:hover[b-a25z59oh47] {
        background-color: #c3c3c3;
    }

.drawerButtonActive[b-a25z59oh47] {
    background-color: #0a0d51;
    color: white;
}

    .drawerButtonActive:hover[b-a25z59oh47] {
        background-color: #0a0d51;
        color: white;
    }

.drawerButton:disabled[b-a25z59oh47] {
    background-color: #bfbfbf; /* A lighter gray for disabled state */
    color: #7a7a7a; /* Optional: duller text color */
    cursor: not-allowed; /* Change cursor to show it's disabled */
    opacity: 0.6; /* Optional: make it look more faded */
}


.drawersMobile[b-a25z59oh47] {
    background-color: #dcdcdc; /* Gray */
    border: none;
    color: #0a0d51;
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: min(calc(0.038*100vw), 14px);
    margin: 4px 2px;
    transition-duration: 1.4s;
    cursor: pointer;
    font-weight: 500;
}

    .drawersMobile:hover[b-a25z59oh47] {
        background-color: #c3c3c3;
    }

.drawersMobile[b-a25z59oh47] {
    background-color: #0a0d51;
    color: white;
}


.compBanner-teamsDeskTop[b-a25z59oh47] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    background-color: white;
    width: 100%;
    gap: 10px;
    font-family: sz-font2, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: #0a0d51;
    flex-wrap: wrap;
}

    .compBanner-teamsDeskTop a[b-a25z59oh47] {
    }

    .compBanner-teamsDeskTop img[b-a25z59oh47] {
        width: 45px;
        padding: 5px;
        border-radius: 10px;
    }

        .compBanner-teamsDeskTop img:hover[b-a25z59oh47] {
            background-color: #c3c3c3;
        }


.compBanner-teamsMobile[b-a25z59oh47] {
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    justify-content: space-around;
}

    .compBanner-teamsMobile img[b-a25z59oh47] {
        height: 25px;
    }


.compBannner-ActiveTeam[b-a25z59oh47] {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: solid 2px #0a0d51;
    border-radius: 5px;
    background-color: #0a0d51;
    color: white;
}


.drawerFixedContainer[b-a25z59oh47] {
    position: fixed;
    top: 0px;
    width: 320px
}

.drawer-container[b-a25z59oh47] {
    display: flex;
    flex-flow: column nowrap;
    width: 320px;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 15px 15px 15px;
    gap: 15px;
    height: calc(100vh - 45px);
    overflow-y: scroll;
    /*   border: 2px solid green;*/
}

.cardBasicContainer-drawer[b-a25z59oh47] {
    margin-top: 0;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    color: #0a0d51;
    padding: 15px 20px;
    gap: 5px;
}

.scoreRow[b-a25z59oh47] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 900;
}

.scoreCenter[b-a25z59oh47] {
    color: white;
    background-color: #0a0d51;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 900;
}

.heading[b-a25z59oh47] {
    color: white;
    font-size: 28px;
    font-weight: 900;
    margin: 0px;
}


.upcoming-centralImage[b-a25z59oh47] {
    height: 50px;
}

.cardBasicContainer-scoring[b-a25z59oh47] {
    margin-top: 0;
    color: #0a0d51;
    padding: 15px 15px;
    gap: 10px;
}

.scoringLine[b-a25z59oh47] {
    border-bottom: 1px solid #E8E8E8;
    padding: 5px 5px;
    color: #0a0d51;
    font-size: 14px;
    font-weight: 700;
}


.scoringLine-number[b-a25z59oh47] {
    float: right;
    /*color: #0a0d51;*/
}

.scoringLine-zero[b-a25z59oh47] {
    background-color: #F0F0F0;
    color: #B0B0B0;
    font-weight: 300;
}

.scoringLineAccordionHeading[b-a25z59oh47] {
    cursor: pointer
}

.accordionContents[b-a25z59oh47] {
    border: 1px solid #C0C0C0;
    padding: 10px;
}

.accordionArrow[b-a25z59oh47] {
    width: 20px;
    margin-bottom: 5px;
}

.scoringHeading[b-a25z59oh47] {
    color: white;
    font-size: 20px;
    font-weight: 900;
    margin-top: 20px;
}

.scoringRules[b-a25z59oh47] {
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
}

.addEntryContainer[b-a25z59oh47] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-top: 10px;
}


.matchTabs[b-a25z59oh47] {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 4px;
    padding: 0 10px 10px 10px;
}

    .matchTabs a[b-a25z59oh47] {
        cursor: pointer;
        text-align: center;
        flex-grow: 1;
        color: #0a0d51;
    }

        .matchTabs a:hover[b-a25z59oh47] {
            color: #0d6efd;
        }


.matchTabs-active[b-a25z59oh47] {
    font-weight: 700;
    border-bottom: solid 3px #0a0d51;
}

/* /Components/CountDownClock.razor.rz.scp.css */
.container[b-bvlwcw4t80] {
    font-size: 35px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    padding-top:5px;
}


.barContainer[b-bvlwcw4t80] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.digitContainer[b-bvlwcw4t80]{
    display:flex;
    flex-flow: column nowrap;
    padding: 0 10px;
}

.rightDivider[b-bvlwcw4t80] {
    border-right: 2px solid rgb(100, 100, 100, 0.3);
}

.digits[b-bvlwcw4t80]{
   
}

.units[b-bvlwcw4t80] {
    font-size: 8px;
    text-transform: uppercase;
    margin-top:-5px;
}
/* /Components/FavouritesTable.razor.rz.scp.css */
.favNoYetSigned[b-8odpx3r2r6] {
    font-weight: 800;
}

.favSignedByUser[b-8odpx3r2r6] {
    color: #f0b310;
}

.favSignedBySomeoneElse[b-8odpx3r2r6] {
    color: grey;
}


.arrowButton[b-8odpx3r2r6] {
    width: 25px;
    height: 25px;
}

    .arrowButton:hover[b-8odpx3r2r6] {
        background-color: lightgray;
        border-radius: 4px;
        color: white;
        cursor: pointer;
    }

.arrowButtonDisabled[b-8odpx3r2r6] {
    opacity: 0.5;
}

.favouriteMoving[b-8odpx3r2r6] {
    opacity: 0;
}

.favouriteChangedTo[b-8odpx3r2r6] {
    opacity: 1;
    transition: all 0.8s;
}
/* /Components/HeadPlayerMatches.razor.rz.scp.css */
.table tbody[b-buzv06ohje] {
    font-weight: 1000;
    color: #0a0d51;
}


.table th[b-buzv06ohje] {
    background-color: #0a0d51;
    color: white;
    padding-left: 25px;
    padding-right: 25px;
}


/* Zebra striping */
.table tr:nth-of-type(2n+1)[b-buzv06ohje] {
    background: #f1f1f1;
}


.center_column[b-buzv06ohje] {
    text-align: center;
    border-left: 2px solid #E8E8E8;
    border-right: 2px solid #E8E8E8;
    width: 270px;
}



.past_matches[b-buzv06ohje] {
    background-color: lightgray;
    opacity: 0.5;
}


/*DESKTOP VERSION*/
@media (min-width: 919.97px) {
    .container[b-buzv06ohje] {
        padding: 10px 25px;
    }
    
    .kicker[b-buzv06ohje] {
        width: 12px;
        margin: 0 5px;
    }
    .playerCell[b-buzv06ohje] {
        white-space: nowrap;
        overflow: hidden;
    }

    .side_colum[b-buzv06ohje] {
        width: 400px;
        padding: 5px 25px;
    }

}

/*MOBILE VERSION*/
@media (max-width: 919.98px) {

    .container[b-buzv06ohje] {
        padding: 5px 5px;
    }
    

    .table th[b-buzv06ohje] {
        padding-left: 10px;
        padding-right: 10px;
    }


    .kicker[b-buzv06ohje] {
        width: 10px;
        margin: 0 6px;
    }

    .side_colum[b-buzv06ohje] {
        width: 400px;
        padding: 5px 5px;
    }
}
/* /Components/MatchCards.razor.rz.scp.css */
.cardBasicContainer-match[b-aqm3f63viv] {
    margin-top: 0;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    color: #0a0d51;
    padding: 15px 20px;
    gap: 5px;
    min-width: 276px;
}

.upcoming-teams[b-aqm3f63viv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('/images/Rectangle-88.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 56px;
    height: 65px;
    width: 100%;
}


.pastMatch[b-aqm3f63viv] {
    cursor: pointer;
}

    .pastMatch:hover[b-aqm3f63viv] {
        background: #f0b310;
    }

        .pastMatch:hover > .upcoming-teams[b-aqm3f63viv] {
            background-image: none;
        }



.pastMatch_active[b-aqm3f63viv] {
    background: #f0b310;
}
.pastMatch_active > .upcoming-teams[b-aqm3f63viv] {
    background-image: none;
}


.upcoming-teams-box[b-aqm3f63viv] {
    display: flex;
    align-items: center
}

    .upcoming-teams-box img[b-aqm3f63viv] {
        max-width: 50px;
        max-height: 50px;
        margin-left: 5px;
        margin-right: 5px
    }

    .upcoming-teams-box span[b-aqm3f63viv] {
        font-weight: 900;
        font-size: 18px;
        width: 60px;
    }

.score_container_mini[b-aqm3f63viv] {
    background-color: #0a0d51;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}


.roundSelector[b-aqm3f63viv] {
    display: flex;
    flex-flow: row nowrap;
    background-color: #f0b310;
    color: #0a0d51;
    border-radius: 10px;
    align-items: center;
    gap: 30px;
    font-weight: 700;
    justify-content: space-between;
}

    .roundSelector img[b-aqm3f63viv] {
        width: 50px;
        padding: 10px 15px;
    }



.buttonArrow_left :hover[b-aqm3f63viv] {
    background-color: antiquewhite;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.buttonArrow_right :hover[b-aqm3f63viv] {
    background-color: antiquewhite;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* /Components/SelectSpot.razor.rz.scp.css */
.player_row[b-gt3ronjj27]{
    display:flex;
    flex-flow: row nowrap;
    align-items:center;
    column-gap:10px;
    padding:7px 15px;
}


.player[b-gt3ronjj27] {
    font-size: 16px;
    font-weight: 700;
    width:200px;
}


.add_link[b-gt3ronjj27] {
    cursor: pointer;
    width: 30px;
}

    .add_link:hover[b-gt3ronjj27] {
        opacity: 0.7;
    }

.team_img[b-gt3ronjj27] {
    width: 50px;
}

.striped_background[b-gt3ronjj27] {
    background-color: #F5F5F5;
}

.playerSelected[b-gt3ronjj27] {
    color: white;
    background-color: #0a0d51;
}

.playerOut[b-gt3ronjj27] {
    color: white;
    background-color: red;
}
/* /Components/ShowFullDraft.razor.rz.scp.css */

.pickMade[b-rxfp1s2g4h] {
    font-weight: 700;
}

.pickUnused[b-rxfp1s2g4h] {
    color: lawngreen;
}

.pickCurrent[b-rxfp1s2g4h] {
    color: blue;
}

.pickNotYet[b-rxfp1s2g4h] {
    color: lightgray
}
/* /Components/StatGauge.razor.rz.scp.css */

.gauges[b-ipx5m8g5n8] {
    display: grid;
    grid-template-columns: 1fr 10px 1fr;
    padding: 0px 0px;
}


.gauge[b-ipx5m8g5n8] {
    width: 100%;
    background-color: #f1f1f1;
}


.gauge_element[b-ipx5m8g5n8] {
    height: 20px;
    border-radius: 4px;
    background-color: #0a0d51;
}


.gauge_loser[b-ipx5m8g5n8] {
    background-color: #f24f3e;
}


.gaugeLabel[b-ipx5m8g5n8] {
    color: #0a0d51;
    font-weight:800;
    padding:20px 10px 3px 10px;
    font-size:14px;
}
/* /Components/StatsTables/StatsTable.razor.rz.scp.css */

td[b-huoww3ezag], th[b-huoww3ezag] {
    text-align: center;
    vertical-align: middle;
}

th[b-huoww3ezag] {
    background-color: #0a0d51;
    border-bottom-width: 0px;
}

.playerColumn[b-huoww3ezag] {
    gap: 20px;
}


/*DESKTOP VERSION*/
@media (min-width: 919.97px) {
    .container[b-huoww3ezag] {
    }

    thead[b-huoww3ezag] {
        position: sticky;
        top: 176px;
        background-color: #0a0d51;
        color: white;
        z-index: 1
    }

    th[b-huoww3ezag] {
        position: sticky;
        top: 176px;
        height: 40px;
        border-bottom-width: 0px
    }

}


/*MOBILE VERSION FOR PADDING IN CARDS*/
@media (max-width: 650px) {
    .container[b-huoww3ezag] {
        overflow: scroll;
        padding: 0;
        width: calc(100vw - 40px);
        max-height: calc(100vh - 180px);
    }

    .playerColumn[b-huoww3ezag] {
        border-right: 2px solid #dcdcdc;
        padding-right: 2px;
        gap:10px;
    }

    .position[b-huoww3ezag] {
        font-size: 9px;
    }
}



/*MOBILE VERSION*/
@media (max-width: 919.98px) {


    table[b-huoww3ezag] {
        /* table-layout: fixed;*/
        width: 100%;
        align-items: center;
        font-size: 12px;
    }

    td:first-child[b-huoww3ezag], th:first-child[b-huoww3ezag] {
        position: sticky;
        left: 0;
        z-index: 1;
        background-color: white;
    }


    thead tr th[b-huoww3ezag] {
        position: sticky;
        top: 0;
    }


    th:first-child[b-huoww3ezag] {
        z-index: 2;
        background-color: #0a0d51;
    }
}
/* /Components/TabControl.razor.rz.scp.css */
.overallContainer[b-tmi9g9scla] {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    border-bottom: 2px solid #E8E8E8;
    align-items: center;
    row-gap:10px;
}


.tabContainer[b-tmi9g9scla] {
    display: flex;
    flex-flow: row nowrap;

}


.tabNormal[b-tmi9g9scla] {
    padding: 5px 5px 5px 5px;
    cursor: pointer;
    font-weight: 700;
}

    .tabNormal:hover[b-tmi9g9scla] {
        background-color: #E8E8E8;
    }


.activeTab[b-tmi9g9scla] {
    border-bottom: 4px solid #f0b310;
    font-weight: 700;
}


.button1[b-tmi9g9scla] {
    border-radius: 10px;
    background-color: #f0b310;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 14px;
}

    .button1:hover[b-tmi9g9scla] {
        background-color: #e5ab10;
    }


/*DESKTOP VERSION*/
@media (min-width: 519.97px) {
    .tabNormal[b-tmi9g9scla] {
        padding: 10px 15px;
        font-size:20px;
    }
}


/*MOBILE VERSION*/
@media (max-width: 519.98px) {

  /*  .tabContainer {
        display: flex;
        flex-flow: row nowrap;
        width: 100%;
        justify-content: space-around
    }*/

    .button1[b-tmi9g9scla] {
        border-radius: 8px;
        font-size: 10px;
    }

    .tabNormal[b-tmi9g9scla] {
        padding: 5px;
        font-size:14px;
    }

}
/* /Components/ToolTipBonusPoints.razor.rz.scp.css */
.tooltip-wrapper[b-powbofex7f] {
    position: relative;
    display: inline-block;
    cursor: help;
}

#spanText[b-powbofex7f] {
    visibility: hidden;
    position: absolute;
    width: 205px;
    margin-left: -60px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    top: -15px;
    right: 130%;
    font-size:12px;
}


.tooltip-wrapper:hover #spanText[b-powbofex7f] {
    visibility: visible;
    cursor: default
}
/* /Components/ToolTipGeneral.razor.rz.scp.css */
.tooltip-container[b-7753aioqir] {
    position: relative;
    display: inline-block;
}

.tooltip[b-7753aioqir] {
    position: absolute;
    margin-bottom: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 0.85rem;
    z-index: 9999 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    backdrop-filter: blur(2px);
}


.tooltip-container:hover .tooltip[b-7753aioqir] {
    opacity: 1;
}

.tooltip-top-left[b-7753aioqir] {
    bottom: 100%;
    left: 0;
}

.tooltip-top-right[b-7753aioqir] {
    bottom: 100%;
    right: 0;
}
/* /Components/ToolTipPlayerPoints.razor.rz.scp.css */
.tooltip-wrapper[b-6cgcxd6v7i] {
    position: relative;
    display: inline-block;
    cursor: help;
}

#spanText[b-6cgcxd6v7i] {
    visibility: hidden;
    position: absolute;
    width: 160px;
    margin-left: -60px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    top: -15px;
    right: 130%;
}


.tooltip-wrapper:hover #spanText[b-6cgcxd6v7i] {
    visibility: visible;
    cursor: default
}


.ktooltip[b-6cgcxd6v7i] {
    display: inline-block;
    text-indent: 0em;
    padding: 4px 8px;
}

    .ktooltip:hover[b-6cgcxd6v7i] {
        background-color: #363636;
        border-radius: 3px;
        color: #fff;
    }


.ktooltiptext[b-6cgcxd6v7i] {
    display: none;
    width: 200px;
    background-color: #363636;
    color: #fff;
    border-radius: 6px;
    padding: 5px 5px;
    margin-top:7px;
    left: calc(50vw - 115px);
    line-height: normal;
    text-decoration: none;
    position: absolute;
    z-index: 1;
    
}

.ktooltip:hover + span[b-6cgcxd6v7i] {
    display: block;
}
/* /Components/TrophyCard.razor.rz.scp.css */
.trophyBox[b-ont6l70twc] {
    display: flex;
    flex-flow: row wrap;
    background-color: #F8D988;
    border: 2px solid #F5CB5A;
    max-width: 900px;
    margin-top: 40px;
    padding: 23px;
    justify-content: space-evenly;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    gap: 20px;
    border-radius:15px;
}

.trophyLeft[b-ont6l70twc] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}


.image-container[b-ont6l70twc] {
    position: relative;
    display: inline-block;
}

.base-image[b-ont6l70twc] {
    display: block;
    max-width: 100%;
}

.overlay-image[b-ont6l70twc] {
    position: absolute;
    left: 50%;
    top: 35%; /* center vertically */
    transform: translate(-50%, -50%);
    width: 30px;
    border-radius: 15px;
}

.itemLabel[b-ont6l70twc] {
    font-weight: 400;
}

/*MOBILE VERSION*/
@media (max-width: 650px) {

    .trophyBox[b-ont6l70twc] {
        font-size: 16px;
    }
}
/* /Pages/AdminTables.razor.rz.scp.css */
.aLink[b-de74vosc62] {
    cursor: pointer;
    text-decoration: underline;
    color: blue;
}

.modButton[b-de74vosc62] {
    background-color: #0a0d51;
    color: white;
    padding: 2px 10px;
    border: 1px solid black;
    border-radius: 10px;
    font-size:12px;
}

.roundMismatch[b-de74vosc62] {
    color: white;
    font-weight: 800;
    background-color: rebeccapurple;
    padding: 2px 5px;
}

.finalRound[b-de74vosc62] {
    background-color: forestgreen;
}

.ghosted[b-de74vosc62] {
    background-color: darkgray !important;
}

/* /Pages/Api.razor.rz.scp.css */
.logOutputBox[b-p4ytnrq0m1] {
    max-height: 400px;
    overflow-y: scroll;
    background-color: #F0F0F0
}

.logOutputBoxHeading[b-p4ytnrq0m1] {
    width: 100%;
    background-color: #282828;
    text-align: center;
    color: white;
    font-size:14px;
    padding: 5px;
}
/* /Pages/ChatFullPage.razor.rz.scp.css */
.cardBasicContainer[b-6ac05829ea] {
    margin-top: 0px;
}

.containerHidden1[b-6ac05829ea] {
    flex: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 0;
    pointer-events: none;
}


.mainContentBox_mobile[b-6ac05829ea] {
    margin-top: 0px;
}

.chatFullPageContainer[b-6ac05829ea] {
    display: flex;
    flex-flow: row nowrap;
    height: calc(100vh - 250px);
    gap: 20px;
}

.chatFullPageContainer_mobile[b-6ac05829ea] {
    height: calc(100vh - 75px);
    gap: 0px;
}

.leftSideBar[b-6ac05829ea] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 400px;
    padding: 10px;
    border: 1px solid #D3D3D3;
}

.leftSideBar_mobile[b-6ac05829ea] {
    width: 100%;
}

.rightSideHeader[b-6ac05829ea] {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
}

.rightSideHeader_mobile[b-6ac05829ea] {
    padding-bottom: 6px;
}

.rightSideTitle[b-6ac05829ea] {
    font-size: 30px;
    margin-left: 10px;
}

.rightSideTitle_mobile[b-6ac05829ea] {
    font-size: 20px;
}

.rightSideBar[b-6ac05829ea] {
    flex: 1;
    height: 100%;
    border: 1px solid #D3D3D3;
    display: flex;
    flex-direction: column;
}

.searchResultsBox[b-6ac05829ea] {
    display: flex;
    flex-flow: nowrap row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid gray;
}


.chat-avatar[b-6ac05829ea] {
    height: 64px;
    width: 64px;
}

.chat-avatar_mobile[b-6ac05829ea] {
    height: 40px;
    width: 40px;
}

.dropdown[b-6ac05829ea] {
    position: relative;
    display: inline-block;
}


.dropdown-menu1[b-6ac05829ea] {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    padding: 0;
    margin-top: 4px;
    cursor: pointer;
}

    .dropdown-menu1 a[b-6ac05829ea] {
        display: block;
        padding: 10px 12px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        cursor: pointer;
    }

        .dropdown-menu1 a:hover[b-6ac05829ea] {
            background-color: #f5f5f5;
        }
/* /Pages/CompCreate.razor.rz.scp.css */
.scoringContainer[b-f2z97c1bpd] {
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: flex-end;
    width: 100%;
    gap: 30px;
    padding: 16px;
}

.selectionContainer[b-f2z97c1bpd] {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-end;
    width: 100%;
    gap: 30px;
    padding: 16px;
}

.containerForSwitch[b-f2z97c1bpd] {
    display: block;
    width: fit-content;
}


[b-f2z97c1bpd] .mud-toolbar {
    --mud-internal-toolbar-height: auto !important;
}


[b-f2z97c1bpd] .mud-height-full {
    min-height: 130px;
}

/*
::deep .mud-tabs {
    width: calc(100vw - 60px); 
} 
*/

.form-label[b-f2z97c1bpd] {
    font-size: 16px;
    margin: 0;
}

.form-control[b-f2z97c1bpd] {
    width: 80px;
    display: inline;
}

.pointsContainer[b-f2z97c1bpd] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 340px;
    margin: 4px 0px;
    
}

@media (max-width:625px) {
    .actionContainer[b-f2z97c1bpd] {
        width: 100% !important;
    }
}

    .actionContainer[b-f2z97c1bpd] {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        max-width: 250px;
        margin: 4px 0px;
        border: 1px solid #E8E8E8;
        background-color: white;
        padding: 10px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    /*
@media (max-width: 624.98px) {
    .pointsExplanation {
        max-width:340px !important;
    }

}*/

    @media (min-width:625px) and (max-width:849.99px) {
        .pointsExplanation[b-f2z97c1bpd] {
            max-width: 100% !important;
        }
    }

    @media (min-width:850px)  {
        .pointsExplanation[b-f2z97c1bpd] {
            flex: 1;
        }
    }

    .pointsExplanation[b-f2z97c1bpd] {
        max-width: 825px;
        text-align: left;
        border: 1px solid #E8E8E8;
        background-color: white;
        padding: 10px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }



    .selectionExplanation[b-f2z97c1bpd] {
        flex: 1;
        /*  border: 1px solid red;*/
        text-align: left;
        border: 1px solid #E8E8E8;
        background-color: white;
        padding: 10px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

        .selectionExplanation p[b-f2z97c1bpd] {
            margin: 0px !important;
        }

    .bonusContainer[b-f2z97c1bpd] {
        border: 1px solid #E8E8E8;
        background-color: white;
        padding: 10px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }



    @media (max-width: 649.98px) {
        [b-f2z97c1bpd] .mud-tabs {
            width: calc(100vw - 20px);
        }

        .pointsContainer[b-f2z97c1bpd] {
            width: 290px;
        }

        .selectionContainer[b-f2z97c1bpd] {
            padding: 5px;
        }

        .scoringContainer[b-f2z97c1bpd] {
            padding: 5px;
        }
    }

/* /Pages/CompDetails.razor.rz.scp.css */
.compDetailsContainer[b-69a2qe0twk] {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.cardBasicContainer-table[b-69a2qe0twk] {
    max-width: 750px;
    overflow: clip;
    margin-top: 0px;
    padding-top: 0;
}

.cardBasicContainer-details[b-69a2qe0twk] {
    background-color: #0a0d51;
    color: white;
    font-size: 16px;
    flex-grow: 1;
    flex-basis: 30%;
    max-width: 750px;
    margin-top: 0px;
}

.downloadExcelBox[b-69a2qe0twk] {
    border-radius: 10px;
    padding: 5px;
    width: 72px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: 0;
}

    .downloadExcelBox img[b-69a2qe0twk] {
        margin: 0 5px;
        height: 20px;
    }

.fantasy-table tbody[b-69a2qe0twk] {
}

    .fantasy-table tbody td a[b-69a2qe0twk] {
        cursor: pointer;
        padding: 7px 0px 7px 7px;
    }

        .fantasy-table tbody td a:hover[b-69a2qe0twk] {
            color: #00a7fd;
        }


    .fantasy-table tbody td[b-69a2qe0twk] {
        padding: 4px 2px 2px 8px;
    }


.subheading[b-69a2qe0twk] {
    font-weight: 700;
    color: #0a0d51;
    padding: 8px 8px !important;
}

.pointsChange[b-69a2qe0twk] {
    margin-left: -8px;
    margin-right: 2px;
    font-size: 10px;
}

/*MOBILE VERSION*/
@media (max-width: 420px) {
    .fantasy-table tr[b-69a2qe0twk] {
        font-size: 3vw;
    }

    .pointsChange[b-69a2qe0twk] {
        font-size: 8px;
    }
}
/* /Pages/CompManage.razor.rz.scp.css */
.compCardContainer[b-293nw43t9i] {
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
    align-items: flex-start;
    padding: 20px 0px;
    border-top: 1px solid #E8E8E8;
}


.comManageBanner[b-293nw43t9i] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0d51;
    height: 145px;
    color: white;
    font-size: 3rem;
    text-align: center;
    background-image: url('/images/new-comp-banner.png');
    background-repeat: no-repeat;
    background-position: center;
    /*  background-size: 100% 100%;*/
}

    .comManageBanner h2[b-293nw43t9i] {
        color: #f0b310;
        background-color: #0a0d51BB;
        padding: 8px 16px;
        border-radius: 16px;
    }

[b-293nw43t9i] .mud-tabs-toolbar-content {
    background-color: #f7f7f7;
}

[b-293nw43t9i] .mud-tab {
    text-transform: unset;
    font-size: 20px;
    font-weight: 700;
}
/* /Pages/CompNew.razor.rz.scp.css */


.compNew-banner[b-n5oz2lctue] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0d51;
    height: 145px;
    color: white;
    font-size: 3rem;
    text-align: center;
    background-image: url('/images/new-comp-banner.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    /*  background-size: 100% 100%;*/
}

    .compNew-banner h2[b-n5oz2lctue] {
        color: #f0b310;
        background-color: #0a0d51BB;
        padding: 8px 16px;
        border-radius: 16px;
    }

.compNew-card[b-n5oz2lctue] {
    display: flex;
    flex-direction: column;
    /*   align-items:stretch; 
    align-content:flex-start;*/
    padding: 40px;
    border-radius: 15px;
    font-size: 1.2rem;
    margin: 30px 0 10px 0;
    min-width: 320px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    gap: 20px;
}

    .compNew-card h2[b-n5oz2lctue] {
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
    }

    .compNew-card a[b-n5oz2lctue] {
        text-align: center;
        /* border: 1px solid green;*/
        padding: 0px 20px;
    }

.compNew-card-create[b-n5oz2lctue] {
    background-color: white;
    color: #0a0d51;
}

.compNew-card-join[b-n5oz2lctue] {
    background-color: #0a0d51;
    color: white;
}

    .compNew-card-join input[b-n5oz2lctue] {
        background-color: #66688a;
        color: white;
        border: none;
    }

label[b-n5oz2lctue] {
    font-weight: 700;
}

.publicCompsContainer[b-n5oz2lctue] {
    max-height: 270px;
    background-color: white;
    padding: 10px;
    overflow-y: auto;
    border-radius: 3px;
}

.publicComps[b-n5oz2lctue] {
    display: grid;
    font-weight: 400;
    grid-template-columns: 75px 40px 1fr 50px 55px;
    color: #0a0d51;
    font-size: 14px;
}


    .publicComps > *[b-n5oz2lctue] {
        padding: 5px 5px;
        display: flex;
        align-items: center;
    }

    .publicComps:nth-of-type(2n)[b-n5oz2lctue] {
        background-color: #f1f1f1;
    }

    .publicComps:nth-of-type(2n+1)[b-n5oz2lctue] {
        background-color: white;
    }


.publicJoin[b-n5oz2lctue] {
    background-color: #f0b310;
    color: #0a0d51;
    padding: 2px 5px;
    border-radius: 5px;
}

    .publicJoin:hover[b-n5oz2lctue] {
        background-color: #c9930d;
    }

.publicJoinImg[b-n5oz2lctue] {
    max-height: 25px;
    max-width: 35px;
}

.publicJoinSportIcon[b-n5oz2lctue] {
    max-height: 20px;
    margin-right:3px;
}


/*MOBILE VERSION*/
@media (max-width: 500px) {
    .compNew-banner[b-n5oz2lctue] {
        font-size: 2rem;
    }

    .compNew-card[b-n5oz2lctue] {
        border-radius: 10px;
        padding: 10px;
    }

}
/* /Pages/CricketDashboard.razor.rz.scp.css */


.carousel-container[b-nyf2xsnrlr] {
    display: flex;
    align-content: stretch;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    background-image: url('/images/cricket-dash-banner.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1250px 450px;
    padding: 20px 80px 70px 80px;
    gap: 30px;
    font-family: sz-font2, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: #0a0d51;
    border-radius: 15px;
    height: 450px;
    overflow: visible;
    z-index: 1
}

.carousel-container-mini[b-nyf2xsnrlr] {
    background-size: 100% 250px;
    padding: 30px 4px 50px 4px;
    gap: 30px;
    border-radius: 15px;
    height: 250px;
    width: 100%;
   /* border: 1px solid green;*/
}

.carousel-comingUpBox[b-nyf2xsnrlr] {
    background-color: #f0b310;
    padding: 5px 25px;
    text-align: center;
    border-radius: 15px;
    width: fit-content;
    block-size: fit-content;
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: calc(50% - 80px);
    font-size: 18px;
    overflow: visible;
    z-index: 2
}

.carousel-teams[b-nyf2xsnrlr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('/images/carousel-teams.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1000px 90px;
    position: relative;
    flex-grow: 1;
    height: 85px;
}

.carousel-teams-mini[b-nyf2xsnrlr] {
    background-size: calc(100% - 50px) 35px;
    background-image: url('/images/carousel-teams-mini.png');
    width: calc(100%);
   /* border: 1px solid purple;*/
    align-content: stretch;
}


.carousel-teams-box[b-nyf2xsnrlr] {
    display: flex;
    align-items: center
}

    .carousel-teams-box img[b-nyf2xsnrlr] {
        height: 120px;
        margin-left: 8px;
        margin-right: 8px;
        background-color: #c5d4e1ee;
        border-radius:15px;
        padding: 5px;
    }

.carousel-teams-box-mini[b-nyf2xsnrlr] {
    display: flex;
    align-items: center; 
   /* border: 1px solid orange;*/
}

    .carousel-teams-box-mini img[b-nyf2xsnrlr] {
        height: 55px;
        margin-left: 4px;
        margin-right: 4px
    }


.carousel-teams-box-teamName[b-nyf2xsnrlr] {
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
    /*border: 1px solid red;*/
    width: 250px;
    text-transform: uppercase;
}

.carousel-teams-box-teamName-mini[b-nyf2xsnrlr] {
    /*border: 1px solid red;*/
    width: 60px;

}


.carousel-teams-box-teamName-awayteam[b-nyf2xsnrlr] {
    text-align: right;
}


.carousel-centralImage[b-nyf2xsnrlr] {
    height: 195px;
}

.carousel-centralImage-mini[b-nyf2xsnrlr] {
   /* border: 1px solid red;*/
    width:25%;
}

.carousel-players[b-nyf2xsnrlr] {
    color: #0a0d51;
    z-index: 2;
    background-color: transparent;
    width: fit-content;
    block-size: fit-content;
    position: absolute;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6em;
    max-height: 200px;
    /*border: 1px solid red;*/
    display: flex;
    flex-flow: column wrap;
    row-gap: 0px; 
    column-gap: 15px;
}


.carousel-players-hometeam[b-nyf2xsnrlr] {
    text-align: left;
    top: 220px;
    left: 180px;
}

.carousel-players-awayteam[b-nyf2xsnrlr] {
    text-align: right;
    top: 220px;
    right: 180px;
}



/*LAST MATCH CARDS*/

.lastMatchCard-teams[b-nyf2xsnrlr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('/images/Rectangle-88.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 56px;
    position: relative;
    flex-grow: 1;
    height: 85px;
   
}


.lastMatchCard-teams-box[b-nyf2xsnrlr] {
    display: flex;
    align-items: center
}


    .lastMatchCard-teams-box img[b-nyf2xsnrlr] {
        height: 40px;
        margin-left: 8px;
        margin-right: 8px
    }

    .lastMatchCard-teams-box a[b-nyf2xsnrlr] {
        font-weight: 900;
        font-size: 1.2rem;
        
    }


.lastMatchCard-centralImage[b-nyf2xsnrlr] {
    height: 78px;
}

.lastMatchCard-compName[b-nyf2xsnrlr] {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase
}

.lastMatchCard-bestPlayer[b-nyf2xsnrlr] {
    display: flex;
    border-radius: 10px;
    background-color: #f7f7f7;
    align-content: stretch;
    padding: 15px;
    gap: 15px;
    flex-grow: 1;
    /*  border: 1px solid red;*/
}

    .lastMatchCard-bestPlayer img[b-nyf2xsnrlr]{
        height: 60px;
        margin-left: 0px;
        margin-right: 0px;
        border-radius: 30px;
        border: 2px solid #f0b310;
    }

.lastMatchCard-bestPlayer-name[b-nyf2xsnrlr] {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase
}

.lastMatchCard-stat[b-nyf2xsnrlr] {
    border-bottom: 1px solid #E8E8E8;
    padding: 5px 0px;
    color: #707070;
}


.lastMatchCard-stat-number[b-nyf2xsnrlr] {
    float: right;
    color: #0a0d51;
    font-weight: 500;
}

.lastMatchCard-leaderboard-header[b-nyf2xsnrlr] {
    color: #E8E8E8
}

.lastMatchCard-leaderboard-header-row[b-nyf2xsnrlr] {
    color: #707070;
}

.lastMatchCard-leaderboard-row[b-nyf2xsnrlr] {
    border: 0;
    font-weight: 900;
    color: #0a0d51;
}
/* /Pages/Dashboard.razor.rz.scp.css */


.carousel-container[b-bouz5l7zjo] {
    display: flex;
    align-content: stretch;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    background-image: url('/images/cricket-dash-banner.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1250px 450px;
    padding: 20px 80px 70px 80px;
    gap: 10px;
    font-family: sz-font2, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: #0a0d51;
    border-radius: 15px;
    height: 450px;
    overflow: visible;
    z-index: 1
}

.carousel-container-mini[b-bouz5l7zjo] {
    background-size: 100% 250px;
    padding: 30px 4px 50px 4px;
    gap: 30px;
    border-radius: 15px;
    height: 250px;
    width: 100%;
    /* border: 1px solid green;*/
}

.carousel-comingUpBox[b-bouz5l7zjo] {
    background-color: #f0b310;
    padding: 5px 25px;
    text-align: center;
    border-radius: 15px;
    width: fit-content;
    block-size: fit-content;
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: calc(50% - 80px);
    font-size: 18px;
    overflow: visible;
    z-index: 2
}

.carousel-teams[b-bouz5l7zjo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('/images/carousel-teams.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1000px 90px;
    position: relative;
    flex-grow: 1;
    height: 85px;
}

.carousel-teams-mini[b-bouz5l7zjo] {
    background-size: calc(100% - 50px) 35px;
    background-image: url('/images/carousel-teams-mini.png');
    width: calc(100%);
    /* border: 1px solid purple;*/
    align-content: stretch;
}


.carousel-teams-box[b-bouz5l7zjo] {
    display: flex;
    align-items: center
}

    .carousel-teams-box img[b-bouz5l7zjo] {
        height: 120px;
        margin-left: 8px;
        margin-right: 8px;
        background-color: #c5d4e1ee;
        border-radius: 15px;
        padding: 5px;
    }

.carousel-teams-box-mini[b-bouz5l7zjo] {
    display: flex;
    align-items: center;
    /* border: 1px solid orange;*/
}

    .carousel-teams-box-mini img[b-bouz5l7zjo] {
        height: 55px;
        margin-left: 4px;
        margin-right: 4px
    }


.carousel-teams-box-teamName[b-bouz5l7zjo] {
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
    /*border: 1px solid red;*/
    width: 250px;
    text-transform: uppercase;
}

.carousel-teams-box-teamName-mini[b-bouz5l7zjo] {
    /*border: 1px solid red;*/
    width: 60px;
}


.carousel-teams-box-teamName-awayteam[b-bouz5l7zjo] {
    text-align: right;
}


.carousel-centralImage[b-bouz5l7zjo] {
    height: 195px;
    border-radius: 15px;
    padding: 15px 10px;
    background-color: #c5d4e1ee;
}

.carousel-centralImage-mini[b-bouz5l7zjo] {
    /* border: 1px solid red;*/
    width: 25%;
}

.carousel-players[b-bouz5l7zjo] {
    color: #0a0d51;
    z-index: 2;
    background-color: transparent;
    width: fit-content;
    block-size: fit-content;
    position: absolute;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6em;
    max-height: 200px;
    /*border: 1px solid red;*/
    display: flex;
    flex-flow: column wrap;
    row-gap: 0px;
    column-gap: 15px;
}


.carousel-players-hometeam[b-bouz5l7zjo] {
    text-align: left;
    top: 220px;
    left: 180px;
}

.carousel-players-awayteam[b-bouz5l7zjo] {
    text-align: right;
    top: 220px;
    right: 180px;
}



/*LAST MATCH CARDS*/

.lastMatchCard-teams[b-bouz5l7zjo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('/images/Rectangle-88.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 56px;
    position: relative;
    flex-grow: 1;
    height: 85px;
}


.lastMatchCard-teams-box[b-bouz5l7zjo] {
    display: flex;
    align-items: center
}


    .lastMatchCard-teams-box img[b-bouz5l7zjo] {
        height: 40px;
        margin-left: 8px;
        margin-right: 8px
    }

    .lastMatchCard-teams-box a[b-bouz5l7zjo] {
        font-weight: 900;
        font-size: 1.2rem;
    }


.lastMatchCard-centralImage[b-bouz5l7zjo] {
    height: 78px;
}


.lastMatchCard-compName[b-bouz5l7zjo] {
    text-align: center;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase
}


.lastMatchCard-title[b-bouz5l7zjo] {
    display: grid;
    grid-template-columns: 85px 1fr;
    text-align: left;
    width: 100%;
}

    .lastMatchCard-title img[b-bouz5l7zjo] {
        max-width: 65px;
        max-height: 65px;
    }


.lastMatchCard-bestPlayer[b-bouz5l7zjo] {
    display: flex;
    border-radius: 10px;
    background-color: #f7f7f7;
    align-content: stretch;
    padding: 15px;
    gap: 15px;
    flex-grow: 1;
    /*  border: 1px solid red;*/
}

.lastMatchCard-bestPlayer_img[b-bouz5l7zjo] {
    height: 60px;
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 30px;
    border: 2px solid #f0b310;
}

.lastMatchCard-bestPlayer-name[b-bouz5l7zjo] {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase
}

.lastMatchCard-stat[b-bouz5l7zjo] {
    border-bottom: 1px solid #E8E8E8;
    padding: 5px 0px;
    color: #707070;
}


.lastMatchCard-stat-number[b-bouz5l7zjo] {
    float: right;
    color: #0a0d51;
    font-weight: 500;
}

.lastMatchCard-leaderboard-header[b-bouz5l7zjo] {
    color: #E8E8E8
}

.lastMatchCard-leaderboard-header-row[b-bouz5l7zjo] {
    color: #707070;
}

.lastMatchCard-leaderboard-row[b-bouz5l7zjo] {
    border: 0;
    font-weight: 900;
    color: #0a0d51;
}

.kicker[b-bouz5l7zjo] {
    width: 15px;
    margin-left:10px;
}



.countdown_timer_card[b-bouz5l7zjo] {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    padding: 15px 0 0 0;
    overflow: clip
}


.countdown_timer[b-bouz5l7zjo] {
    width:100%;
    background-color: #f0b310;
    font-size: 28px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    padding: 5px;
}


/* /Pages/DevPage.razor.rz.scp.css */


table[b-5cs0eiworf] {
    font-family: "Fraunces", serif;
    font-size: 125%;
    white-space: nowrap;
    margin: 0;
    border: none;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    border: 1px solid black;
}

    table td[b-5cs0eiworf],
    table th[b-5cs0eiworf] {
        border: 1px solid black;
        padding: 0.5rem 1rem;
    }

    table thead th[b-5cs0eiworf] {
        padding: 3px;
        position: sticky;
        top: 0;
        z-index: 1;
        width: 25vw;
        background: white;
    }

    table td[b-5cs0eiworf] {
        background: #fff;
        padding: 4px 5px;
        text-align: center;
    }

    table tbody th[b-5cs0eiworf] {
        font-weight: 100;
        font-style: italic;
        text-align: left;
        position: relative;
    }

    table thead th:first-child[b-5cs0eiworf] {
        position: sticky;
        left: 0;
        z-index: 2;
    }

    table tbody th[b-5cs0eiworf] {
        position: sticky;
        left: 0;
        background: white;
        z-index: 1;
    }

caption[b-5cs0eiworf] {
    text-align: left;
    padding: 0.25rem;
    position: sticky;
    left: 0;
}

[role="region"][aria-labelledby][tabindex][b-5cs0eiworf] {
    width: 100%;
    max-height: 98vh;
    overflow: auto;
}

    [role="region"][aria-labelledby][tabindex]:focus[b-5cs0eiworf] {
        box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
        outline: 0;
    }


.chatButton[b-5cs0eiworf] {
    background-color: #007bff;
    display: inline-block;
    cursor: pointer;
}

    .chatButton img[b-5cs0eiworf] {
        display: block;
    }
/* /Pages/GroupedLeaderboard.razor.rz.scp.css */
.leaderBoardFullContainer[b-roq0v8h1be] {
    display: flex;
    column-gap: 20px;
    flex-flow: row wrap;
    align-items: flex-start;
}

.theoreticalTeamsbox[b-roq0v8h1be] {
    display: flex;
    gap: 15px;
    flex-flow: column nowrap;
    align-items: flex-start;
    width: 320px;
    padding: 30px;
}

.theoreticalTeamsbox-heading[b-roq0v8h1be] {
    font-size:18px;
    font-weight:900;
    width:100%;
    text-align:center;
}

.theoreticalTeambox-teams[b-roq0v8h1be] {
    display: flex;
    gap: 0px;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
}

.viewTheoButton[b-roq0v8h1be] {
    background-color: #dcdcdc; /* Gray */
    border: none;
    color: #0a0d51;
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: min(calc(0.038*100vw), 14px);
    margin: 4px 7px;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight: 500;
    width: 60px;
}


    .viewTheoButton:hover[b-roq0v8h1be] {
        background-color: #c3c3c3;
    }

.fantasy-table tbody tr:hover[b-roq0v8h1be] {
    background-color: #00A7FD;
}

.fantasy-table tbody td a[b-roq0v8h1be] {
    display: block;
    cursor: pointer;
    padding: 7px 0px 7px 0px;
    font-weight: 700;
}


.fantasy-table tbody td[b-roq0v8h1be] {
    padding: 0px 0px 0px 0px;
}

.pointsChange[b-roq0v8h1be] {
    margin-left: -8px;
    margin-right: 2px;
    font-size: 10px;
}

.link[b-roq0v8h1be]{
    text-decoration:underline;
}

.draft-alert[b-roq0v8h1be] {
    margin-top: 25px;
    margin-bottom: 0;
    padding: 20px 20px;
    font-size: 16px;
    font-weight: 600;
    background-color: #F8D988;
    border-radius: 5px;
    border: 1px solid #F3C240;
    max-width:900px;
}


/*MOBILE VERSION*/
@media (max-width: 420px) {
    .fantasy-table tr[b-roq0v8h1be]{
        font-size: 3vw;
    }

    .pointsChange[b-roq0v8h1be] {
        font-size: 8px;
    }

    .theoreticalTeamsbox[b-roq0v8h1be] {
        width: 100%;
    }


}
/* /Pages/GroupedPlayerPoints.razor.rz.scp.css */
.contentAdjusting[b-d5vc1o4v7u] {
    max-width: 1650px;
}

[b-d5vc1o4v7u] .tabHeadingResponsive {
    width: 160px;

}

[b-d5vc1o4v7u] .tabsResponsive {
    padding: 20px 20px;
   
}



/*MOBILE VERSION*/
@media (max-width: 900px) {
    [b-d5vc1o4v7u] .tabHeadingResponsive {
        padding: 6px 10px;
        font-size: min(2.7vw, 12px);
        width: calc(25vw - 30px);
    }
}

/*MOBILE VERSION*/
@media (max-width: 550px) {

    [b-d5vc1o4v7u] .tabHeadingResponsive {
        padding: 6px 10px;
        font-size: min(2.7vw, 12px);
        width: calc(25vw - 8px);
    }

    [b-d5vc1o4v7u] .tabsResponsive {
        padding: 10px 5px;
    }


}
/* /Pages/GroupedSide.razor.rz.scp.css */
.contentAdjusting[b-qjkzw5w37j] {
    max-width: 1650px;
}


.cardBasicContainer-name[b-qjkzw5w37j] {
    display: flex;
    flex-flow: row wrap;
    justify-content:space-between;
    background-color: #0a0d51;
    padding: 20px;
    color: white;
    font-size: 1.7rem;
    row-gap:20px;
}


.namePoints[b-qjkzw5w37j] {
    display: flex;
    flex-flow: row wrap;
    column-gap: 40px
}

.currentPlayer[b-qjkzw5w37j] {
    font-weight: bold;
}

.subbedPlayer[b-qjkzw5w37j] {
    color:gray;
}

.tableContainer[b-qjkzw5w37j]{


}
/* /Pages/GroupedSideSelection.razor.rz.scp.css */
.cardBasicContainer-name[b-92h438z963] {
    background-color: #0a0d51;
    padding: 20px;
    color: white;
    font-size: 20px;
}

.cardBasicContainer-name-container[b-92h438z963] {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    row-gap: 20px;
    column-gap: 30px;
}

.playersContainer[b-92h438z963] {
    background-color: transparent;
    width: 100%;
    border-radius: 0px;
    padding: 0;
    box-shadow: none;
}

.playerCard[b-92h438z963] {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    border-radius: 15px;
    padding: 20px 0;
    background-color: white;
}


.playerCard-Header[b-92h438z963] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-bottom: 20px;
    background-color: white;
    margin-bottom: 20px;
}

    .playerCard-Header h4[b-92h438z963] {
        font-weight: 700;
    }

.playerList[b-92h438z963] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 100%;
    font-size: 15px;
    font-weight: 700;
}


.player:nth-of-type(2n+0)[b-92h438z963] {
    background-color: #f1f1f1;
}

.player[b-92h438z963] {
    width: 100%;
    padding: 5px 20px;
    background-color: #f7f7f7;
}

    .player:hover[b-92h438z963] {
        cursor: pointer;
        color: #0a0d51;
    }

.playerA:hover[b-92h438z963] {
    background-color: #F7D98B;
}

.playerB:hover[b-92h438z963] {
    background-color: #B3D9FE;
}


.playerList .player-selectedA[b-92h438z963] {
    background-color: #f0b310;
}

    .playerList .player-selectedA:hover[b-92h438z963] {
        background-color: #f0b310;
        cursor: default;
    }

.playerList .player-selectedB[b-92h438z963] {
    background-color: #00a7fd;
}

    .playerList .player-selectedB:hover[b-92h438z963] {
        background-color: #00a7fd;
        cursor: default;
    }

.playerList .player-selectedSubbed[b-92h438z963] {
    background-color: #A9A9A9;
}

    .playerList .player-selectedSubbed:hover[b-92h438z963] {
        cursor: default;
    }

.playerList .player-previouslySelected[b-92h438z963] {
    background-color: #a97c05; /*darker gold color*/
}

    .playerList .player-previouslySelected:hover[b-92h438z963] {
        background-color: #f0b310;
    }

.playerList .player-subSelected[b-92h438z963] {
    background-color: #96DED1;
}

    .playerList .player-subSelected:hover[b-92h438z963] {
        background-color: #96DED1;
        cursor: default;
    }


.form-control[b-92h438z963] {
    max-width: 380px;
    height: 45px;
    font-size: 25px
}

.validationError[b-92h438z963] {
    border: 3px solid #CC0000;
}


.profile-pic[b-92h438z963] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    border-radius: 10px;
    overflow: clip;
    border: 2px solid white;
}

    .profile-pic:hover[b-92h438z963] {
        cursor: pointer;
        border: 2px solid black;
    }

.profile-pic-isSelectingA[b-92h438z963] {
    border: 2px solid #B8B8B8;
}

.profile-pic-isSelectingB[b-92h438z963] {
    border: 2px solid #B8B8B8;
}

.profile-pic-imgA[b-92h438z963] {
    height: 140px;
    width: 140px;
    padding: 5px;
}

.profile-pic-imgB[b-92h438z963] {
    height: 80px;
    width: 80px;
    padding: 5px;
}
/* /Pages/HeadAvailable.razor.rz.scp.css */
.cardBasicContainerFilter[b-7z7se159mn] {
    padding: 0px;
    overflow: clip;
}

.filterCardTopHalf[b-7z7se159mn] {
    padding: 20px;
    min-width: 200px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.filterCardBottomHalf[b-7z7se159mn] {
    background-color: #0a0d51;
    color: white;
    padding: 20px 30px 30px 30px;
    flex-grow: 1;
}

.playerSearchInput[b-7z7se159mn] {
    font-size: 25px;
    padding: 3px 5px;
    border-radius: 5px;
    color: gray;
    font-weight: 500;
    width: 250px;
}

.filterBox[b-7z7se159mn] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

label[b-7z7se159mn] {
    margin-bottom: 8px;
}

.timeRemaingBox[b-7z7se159mn] {
    position: fixed;
    top: 85px;
    left: 10px;
    background-color: forestgreen;
    padding: 5px 10px;
    z-index: 100;
    border-radius: 5px;
    min-width: 50px;
}

.maxAllowedReached[b-7z7se159mn] {
    font-weight: 700;
}

.tradeLimits[b-7z7se159mn] {
    font-size: 10px;
    color: grey;
}


.downloadExcelBox[b-7z7se159mn] {
    border-radius: 10px;
    padding: 5px;
    width: 72px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: 0;
}

    .downloadExcelBox img[b-7z7se159mn] {
        margin: 0 5px;
        height: 20px;
    }

.top_info_box[b-7z7se159mn] {
    padding: 10px 15px;
    width: 250px;
    font-weight: 700;
    font-size: 16px;
}


.top_info_box_outside[b-7z7se159mn] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_info_box_right[b-7z7se159mn] {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 300px;
}

.top_info_box_yellow[b-7z7se159mn] {
    background-color: #f0b310;
}

.top_info_box_blue[b-7z7se159mn] {
    background-color: #00a7fd;
}


.top_info_countdown_timer[b-7z7se159mn] {
    font-size: 35px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}


.top_info_indented[b-7z7se159mn] {
    margin-left: 15px;
}

.top_info_mode[b-7z7se159mn] {
    font-size: 30px;
}


.top_info_box_first[b-7z7se159mn] {
}

.favourite[b-7z7se159mn] {
    cursor: pointer;
    border-radius: 5px;
}

    .favourite:hover[b-7z7se159mn] {
        background-color: lightgrey;
    }


.pickMade[b-7z7se159mn] {
    font-weight: 700;
}

.pickUnused[b-7z7se159mn] {
    color: lawngreen;
}

.pickCurrent[b-7z7se159mn] {
    color: blue;
}

.pickNotYet[b-7z7se159mn] {
    color: lightgray
}


.arrowButton[b-7z7se159mn] {
    width: 25px;
    height: 25px;
}

    .arrowButton:hover[b-7z7se159mn] {
        background-color: lightgray;
        border-radius: 4px;
        color: white;
        cursor: pointer;
    }

.arrowButtonDisabled[b-7z7se159mn] {
    opacity: 0.5;
}

.draftOrderMoving[b-7z7se159mn] {
    opacity: 0;
}

.draftOrderChangedTo[b-7z7se159mn] {
    opacity: 1;
    transition: all 0.8s;
}



/*DESKTOP VERSION*/
@media (min-width: 839.97px) {
    .firstColumn[b-7z7se159mn] {
        padding-left: 20px
    }

    .favouritesContainer[b-7z7se159mn] {
        width: 320px;
    }
}


/*MOBILE VERSION*/
@media (max-width: 839.98px) {

    .top_info_box[b-7z7se159mn] {
        width: 180px;
    }

    .top_info_box_yellow[b-7z7se159mn] {
        width: 250px;
    }

    .top_info_box_outside[b-7z7se159mn] {
        width: 100%;
    }

    .filterBox[b-7z7se159mn] {
        width: 100%;
    }

    .playerSearchInput[b-7z7se159mn] {
        width: 100%;
        font-size: 20px;
    }

    .favouritesContainer[b-7z7se159mn] {
        width: 100%;
    }

    .filterCardBottomHalf[b-7z7se159mn] {

        padding: 10px 15px 15px 15px;

    }

    .filterBox[b-7z7se159mn] {
        gap: 10px;
    }
}
/* /Pages/HeadCompCreate.razor.rz.scp.css */
.scoringContainer[b-1cybk0nka4] {
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: flex-end;
    width: 100%;
    gap: 30px;
    padding: 16px;
}

.selectionContainer[b-1cybk0nka4] {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-end;
    width: 100%;
    gap: 30px;
    padding: 16px;
}



[b-1cybk0nka4] .mud-toolbar {
    --mud-internal-toolbar-height: auto !important;
}


[b-1cybk0nka4] .mud-height-full {
    min-height: 130px;
}

/*
::deep .mud-tabs {
    width: calc(100vw - 60px); 
} 
*/

.form-label[b-1cybk0nka4] {
    font-size: 16px;
    margin: 0;
}

.form-control[b-1cybk0nka4] {
    width: 70px;
    display: inline;
}

.pointsContainer[b-1cybk0nka4] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 340px;
    margin: 4px 0px;
}

.bonusContainer_heading[b-1cybk0nka4] {
    font-size: 16px;
    margin: 20px 0px 5px 15px;
}

.containerForSwitch[b-1cybk0nka4] {
    display: block;
    width: fit-content;
}


@media (max-width:625px) {
    .actionContainer[b-1cybk0nka4] {
        width: 100% !important;
    }
}

    .actionContainer[b-1cybk0nka4] {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        max-width: 250px;
        margin: 4px 0px;
        border: 1px solid #E8E8E8;
        background-color: white;
        padding: 10px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

.roundPassed[b-1cybk0nka4] {
    color: red;
    text-decoration: line-through
}




    @media (min-width:625px) and (max-width:849.99px) {
        .pointsExplanation[b-1cybk0nka4] {
            max-width: 100% !important;
        }
    }

    @media (min-width:850px) and (max-width:1295px) {
        .pointsExplanation[b-1cybk0nka4] {
            flex: 1;
        }
    }

    .pointsExplanation[b-1cybk0nka4] {
        max-width: 825px;
        text-align: left;
        border: 1px solid #E8E8E8;
        background-color: white;
        padding: 10px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }



    .selectionExplanation[b-1cybk0nka4] {
        flex: 1;
        /*  border: 1px solid red;*/
        text-align: left;
        border: 1px solid #E8E8E8;
        background-color: white;
        padding: 10px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

        .selectionExplanation p[b-1cybk0nka4] {
            margin: 0px !important;
        }

    .bonusContainer[b-1cybk0nka4] {
        border: 1px solid #E8E8E8;
        background-color: white;
        padding: 10px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }



    @media (max-width: 649.98px) {
        [b-1cybk0nka4] .mud-tabs {
            width: calc(100vw - 20px);
        }

        .pointsContainer[b-1cybk0nka4] {
            width: 290px;
        }

        .selectionContainer[b-1cybk0nka4] {
            padding: 5px;
        }

        .scoringContainer[b-1cybk0nka4] {
            padding: 5px;
        }
    }

/* /Pages/HeadGameStats.razor.rz.scp.css */
.table tbody[b-j4y5ngfwja] {
    color: #0a0d51;
}

.table th[b-j4y5ngfwja] {
    background-color: #0a0d51;
    color: white;
}


.table tr[b-j4y5ngfwja] {
    vertical-align: middle;
}

.table td[b-j4y5ngfwja] {
    vertical-align: middle;
}

.h2hPlayerPointsTable td[b-j4y5ngfwja] {
    text-align: center;
}

.h2hPlayerPointsTable th[b-j4y5ngfwja] {
    text-align: center;
}

.teamLineUpHeading[b-j4y5ngfwja] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background-color: #0a0d51;
    color: white;
    padding: 5px 20px;
    font-weight: 500;
    font-size: 16px;
}

.positonHeading[b-j4y5ngfwja] {
    text-align: center;
    background-color: #9c9db0;
    color: white;
    font-weight: 700;
    padding: 5px;
}

.table_name_column[b-j4y5ngfwja] {
    width: 100px;
}

/* Zebra striping */
.table tr:nth-of-type(2n+1)[b-j4y5ngfwja] {
    background: #f1f1f1;
}

.subTeamWinner[b-j4y5ngfwja] {
    color: #43bd96
}

.mid_column[b-j4y5ngfwja] {
    text-align: right;
    border-left: 2px solid #E8E8E8;
}

.winnerBG[b-j4y5ngfwja] {
    background-color: rgba(51, 170, 51, .1);
}



.button_link:hover[b-j4y5ngfwja] {
    text-decoration: none;
    color: #0a0d51;
}

.score_container[b-j4y5ngfwja] {
    background-color: #0a0d51;
    color: white;
    padding: 4px 20px;
    border-radius: 40px;
    font-size: 40px;
}

.score_container_mini[b-j4y5ngfwja] {
    background-color: #0a0d51;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    text-align: center;
}

.fan_team_mini[b-j4y5ngfwja] {

    /*    border:1px solid green;*/
}



.fan_team[b-j4y5ngfwja] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 225px;
    font-weight: 500;
    font-size: 25px;
    gap: 5px;
    justify-content: center;
}

.gameProcess[b-j4y5ngfwja] {
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.playerProfile[b-j4y5ngfwja] {
    border-radius: 20px;
}

.player_img[b-j4y5ngfwja] {
    width: 40px;
}

.sideSelector[b-j4y5ngfwja] {
    cursor: pointer;
    padding: 3px 4px;
}

.sideSelector-showing[b-j4y5ngfwja] {
    border-bottom: solid 3px #0a0d51;
    font-weight: 700;
}


.player_row[b-j4y5ngfwja] {
    display: grid;
    grid-template-columns: 50px 1fr 80px 80px 1fr 50px;
    padding: 0px 0px;
}

.kicker-container[b-j4y5ngfwja] {
    position: relative;
    white-space: nowrap;
}

.kicker[b-j4y5ngfwja] {
    width: 15px;
    margin: 0 10px 0 17px;
}

.kicker-number[b-j4y5ngfwja] {
    position: absolute;
    top: -3px;
    left: 5px;
    color: #0a0d51;
    padding: 0 2px 0 4px;
    border-radius: 10px;
    font-size: 10px;
    letter-spacing: 3px;
}

.kicker-number-gray[b-j4y5ngfwja] {
    color: gray;
}


.fan_match_container[b-j4y5ngfwja] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 2px;
    width: 320px;
}

    .fan_match_container:hover[b-j4y5ngfwja] {
        background-color: #f0b310;
    }


.subArrow[b-j4y5ngfwja] {
    padding: 0 10px;
}

.playingSub[b-j4y5ngfwja] {
    font-weight: 1000;
}

.nonPlayingSub[b-j4y5ngfwja] {
    color: gray
}


/*DESKTOP VERSION*/
@media (min-width: 919.97px) {
    .fanCardContainer[b-j4y5ngfwja] {
        max-width: 320px
    }

    .player_cell[b-j4y5ngfwja] {
        padding: 5px 15px;
    }

    .player_row_bye[b-j4y5ngfwja] {
    }

}

/*MOBILE VERSION*/
@media (max-width: 919.98px) {

    .teamLineUpHeading[b-j4y5ngfwja] {
        font-size: 12px;
    }

    .player_row[b-j4y5ngfwja] {
        grid-template-columns: 20px 1fr 50px 50px 1fr 20px;
    }

    .player_row_bye[b-j4y5ngfwja] {
        grid-template-columns: 20px 1fr 50px;
    }


    .player_cell[b-j4y5ngfwja] {
        padding: 5px 5px;
        font-size: 12px;
    }

    .score_container[b-j4y5ngfwja] {
        padding: 4px 10px;
        font-size: 14px;
    }

    .scoreCard[b-j4y5ngfwja] {
        font-size: 14px;
    }

    .fan_team[b-j4y5ngfwja] {
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        width: 125px;
        font-weight: 500;
        font-size: 16px;
        gap: 5px;
        justify-content: center;
    }

    .avatar[b-j4y5ngfwja] {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .gameProcess[b-j4y5ngfwja] {
        font-size: 12px;
    }

    .fanCardContainer[b-j4y5ngfwja] {
        width: 100%;
        max-width: 500px;
    }

    .kicker[b-j4y5ngfwja] {
        width: 10px;
        margin: 0 6px 0 8px
    }

    .kicker-number[b-j4y5ngfwja] {
        font-size: 8px;
        left: 0px;
    }
}
/* /Pages/HeadLeaderboard1.razor.rz.scp.css */

.tab_upcoming[b-2b1qqmcrav] {
    padding: 0 0px 7px 0px;
    cursor: pointer;
    margin-right: 20px;
    font-weight: 400;
    font-size:14px;
}

.tab_upcoming_active[b-2b1qqmcrav] {
    border-bottom: 4px solid #f0b310;
    font-weight: 700;
}


.round_card_outside[b-2b1qqmcrav] {
    color: #0a0d51;
    font-size: 16px;
    font-weight: 500;
    padding: 0px;
}

.round_card_inside[b-2b1qqmcrav] {
    padding: 15px;
}

.round_title[b-2b1qqmcrav] {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.round_select_strip[b-2b1qqmcrav] {
    background-color: #f0b310;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding:10px;
    text-decoration:underline;
}

.round_dates[b-2b1qqmcrav] {
    text-align: center;
    color: dimgray;
    font-size: 12px;
    padding: 5px 5px;
}

.round_card_matchline[b-2b1qqmcrav] {
    display: grid;
    grid-template-columns: 1fr 60px 40px 60px 1fr;
    padding: 3px 0px;
}

.round_card_score[b-2b1qqmcrav] {
    font-weight: 700;
    /*  border: 1px solid red;*/
}

.round_card_separator[b-2b1qqmcrav] {
    text-align: center;
    font-weight: 700;
}

.round_card_bye[b-2b1qqmcrav] {
    text-align: center;
    color: dimgray;
    padding-top: 3px;
}

.isDisabled[b-2b1qqmcrav] {
    color: currentColor;
    cursor: text;
    text-decoration: none;
}

.mastered_img[b-2b1qqmcrav] {
    width: 25px;
    margin-left: 8px;
    margin-right: 8px;
}

.firstColumn[b-2b1qqmcrav] {
    padding-left: 15px
}

.draft-alert[b-2b1qqmcrav] {
    max-width: 900px;
    margin-top: 25px;
    margin-bottom: 0;
    padding: 20px 20px;
    font-size: 16px;
    font-weight: 600;
    background-color: #F8D988;
    border-radius: 5px;
    border: 1px solid #F3C240;
}

/*MOBILE VERSION*/
@media (max-width: 650px) {

    .firstColumn[b-2b1qqmcrav] {
        padding-left: 6px
    }

    .fantasy-table td[b-2b1qqmcrav] {
        padding: 8px 3px;
    }

    .fantasy-table[b-2b1qqmcrav] {
        font-size:12px;
    }

}
/* /Pages/HeadSideSelection.razor.rz.scp.css */
.cardBasicContainer-name[b-alenbj0oqo] {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    background-color: #0a0d51;
    padding: 20px;
    color: white;
    font-size: 1.7rem;
    row-gap: 20px;
}

.cardBasicContainer[b-alenbj0oqo] {
    margin: 0px;
    padding: 0;
}

.arrowButton[b-alenbj0oqo] {
    width: 16px;
    height: 16px;
    padding: 1px 3px 3px 3px;
}

    .arrowButton:hover[b-alenbj0oqo] {
        background-color: lightgray;
        border-radius: 4px;
        color: white;
        cursor: pointer;
    }


.teamSelectionArea[b-alenbj0oqo] {
    background-repeat: no-repeat;
    background-position: top;
    background-position-y: 69px;
    background-size: 791px 827px;
    background-color: #32AE67;
    position: relative;
    height: 1127px;
    width: 871px
}

.teamSelectionAreaAfl[b-alenbj0oqo] {
    background-image: url('/images/AFLfield2.png');
}

.teamSelectionAreaCricket[b-alenbj0oqo] {
    background-image: url('/images/CricketField.png');
    height: 800px;
    background-position-y: -16px;
}

.teamSelectionAreaFootball[b-alenbj0oqo] {
    background-image: url('/images/FootballField.png');
    height: 1020px;
}

.teamSelectionAreaNrl[b-alenbj0oqo] {
    background-image: url('/images/NRLfield.png');
}

.tshirtImg[b-alenbj0oqo] {
    width: 90px;
    height: 77px;
}

.tshirtBottomContainer[b-alenbj0oqo] {
    border-radius: 10px;
    width: 123px;
    overflow: clip;
    text-align: center;
    cursor: pointer;
    margin-top: -10px;
}

.tshirtLineText[b-alenbj0oqo] {
    padding: 5px 0px;
    font-weight: 700;
    font-size: 10px;
}

.playerSelected[b-alenbj0oqo] {
    color: white;
    background-color: #0a0d51;
}

.playerNotSelected[b-alenbj0oqo] {
    color: #0a0d51;
    background-color: #f0b310;
}

.playerOut[b-alenbj0oqo] {
    color: white;
    background-color: red;
}


.fan_team_mini[b-alenbj0oqo] {
    width: 105px;
    font-weight: 500;
    /*    border:1px solid green;*/
}


.tshirt_link[b-alenbj0oqo] {
    position: absolute;
    top: 20px;
    cursor: pointer
}

.disableSelectPlayer[b-alenbj0oqo] {
    cursor: default;
}

.nrlCasualtiesImg[b-alenbj0oqo] {
    width: 15px;
    margin-left: 5px;
}


.drawerButton[b-alenbj0oqo] {
    background-color: #dcdcdc; /* Gray */
    border: none;
    color: #0a0d51;
    padding: 5px 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top:15px;
    margin-left:auto;
    margin-right:auto;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight: 500;
}

    .drawerButton:hover[b-alenbj0oqo] {
        background-color: #c3c3c3;
    }




/*DESKTOP VERSION*/
@media (min-width: 919.97px) {
    .shrink[b-alenbj0oqo] {
    }

    .shrink_adjustment[b-alenbj0oqo] {
        margin-top: 30px;
    }

    .positons[b-alenbj0oqo] {
    }
}



/*MOBILE VERSION*/
@media (max-width: 650px) {

    .shrink_adjustment[b-alenbj0oqo] {
        width: calc(100vw - 24px);
        height: 675px;
        overflow: clip;
        border-radius: 10px;
        border: 1px solid white;
        margin-top:10px;
    }

    .shrink_adjustment_cricket[b-alenbj0oqo]{
        height:480px;
    }

    .teamSelectionAreaCricket[b-alenbj0oqo] {
        height: 1127px;
    }

    .shrink[b-alenbj0oqo] {
        -webkit-transform: scale(0.6);
        -moz-transform: scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
        margin-left: calc(0.6* 435px - 435px - 273px + 50vw);
        margin-top: calc(0.6* 563px - 563px);
    }

    .positons[b-alenbj0oqo] {
        font-size: 10px;
    }
}


/*MOBILE VERSION but really small*/
@media (max-width: 380px) {

    .shrink_adjustment[b-alenbj0oqo] {
        width: calc(100vw - 24px);
        height: 563px;
    }

    .shrink_adjustment_cricket[b-alenbj0oqo] {
        height: 405px;
    }

    .shrink[b-alenbj0oqo] {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        transform: scale(0.5);
        margin-left: calc(0.5* 435px - 435px - 230px + 50vw);
        margin-top: calc(0.5* 563px - 563px);
    }

}
/* /Pages/HeadSquad.razor.rz.scp.css */
.cardBasicContainer-name[b-kkx19ph9l8] {
    background-color: #0a0d51;
    padding: 20px;
    color: white;
    font-size: 12px;
    row-gap: 5px;
    max-width:290px;
    margin:0px;
}

.positons[b-kkx19ph9l8]{

}


.favouritesContainer[b-kkx19ph9l8] {
    width: 320px;
}





/*MOBILE VERSION*/
@media (max-width: 460px) {
    .cardBasicContainer-name[b-kkx19ph9l8] {
        max-width: 100%;
    }

    .positons[b-kkx19ph9l8] {
        font-size: 10px;
    }

    .favouritesContainer[b-kkx19ph9l8] {
        width: 100%;
    }


}



.topRowCards[b-kkx19ph9l8] {
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
    max-width: 900px;
    margin-top:30px;
}

.topRowHeading[b-kkx19ph9l8]{
    margin-bottom:5px;
}

.topRowContents[b-kkx19ph9l8] {
    font-weight:700;
    font-size:14px;
}

.editButton[b-kkx19ph9l8]{
    font-size:12px;
    color:lightgray;
    float:right;
    margin-top:-10px;
}

    .editButton:hover[b-kkx19ph9l8] {
        font-weight: 700;
    }


.tradeLimits[b-kkx19ph9l8] {
    font-size: 10px;
    color: grey;
}




/* /Pages/HeadSquadsAll.razor.rz.scp.css */
.cardBasicContainer[b-ujoe2an5cd] {
    color: #0a0d51;
}


.fanTeamCard[b-ujoe2an5cd] {
    display: flex;
    max-width: 900px;
    padding: 5px 0;
    overflow: clip
}


.squadPlayers[b-ujoe2an5cd] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px 0px;
    width: 100%;
}



.fantasyTeamSide[b-ujoe2an5cd] {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    width: 180px;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 10px;
    gap: 15px;
}

.playerItem[b-ujoe2an5cd] {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 3px 10px 3px 10px;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.squadPlayers img[b-ujoe2an5cd] {
    height: 35px;
}


.playerProfile[b-ujoe2an5cd] {
    border-radius: 20px;
}


/*DESKTOP VERSION*/
@media (min-width: 919.97px) {


    .squadPlayers[b-ujoe2an5cd] {
        grid-template-columns: 1fr 1fr 1fr;
    }


    .playerItem:nth-of-type(3n+2)[b-ujoe2an5cd] {
        border-left: 2px solid #E8E8E8;
        border-right: 2px solid #E8E8E8;
    }

    .playerItem:nth-of-type(6n+4)[b-ujoe2an5cd], .playerItem:nth-of-type(6n+5)[b-ujoe2an5cd], .playerItem:nth-of-type(6n+6)[b-ujoe2an5cd] {
        background: #f1f1f1;
    }



}



/*MOBILE VERSION*/
@media (max-width: 919.98px) {
    .fanTeamCard[b-ujoe2an5cd] {
        flex-flow: column nowrap;
        align-items: center;
    }

    .squadPlayers[b-ujoe2an5cd] {
        grid-template-columns: 1fr;
    }

    .playerItem:nth-of-type(2n+1)[b-ujoe2an5cd]{
        background: #f1f1f1;
    }
}
/* /Pages/HeadTradeHistory.razor.rz.scp.css */
.cardBasicContainerFilter[b-cnsjfza5id] {
    padding: 0px;
    overflow: clip;
}

.filterCardTopHalf[b-cnsjfza5id] {
    padding: 20px;
}

.filterCardBottomHalf[b-cnsjfza5id] {
    background-color: #0a0d51;
    color: white;
    padding: 20px 30px 30px 30px;
}

.playerSearchInput[b-cnsjfza5id] {
    font-size: 25px;
    padding: 3px 5px;
    border-radius: 5px;
    color: gray;
    font-weight: 500;
    width: 400px;
}

.filterBox[b-cnsjfza5id] {
    width: 405px
}

label[b-cnsjfza5id] {
    margin-bottom: 8px;
}

.released_row[b-cnsjfza5id] {
    background-color: rgba(235, 52, 143, .1);
}


.signed_row[b-cnsjfza5id] {
    background-color: rgba(51, 170, 51, .1);
}




/*DESKTOP VERSION*/
@media (min-width: 719.97px) {

    .firstColumn[b-cnsjfza5id] {
        padding-left: 20px
    }
    .smallerText[b-cnsjfza5id] {
    }

}


/*MOBILE VERSION*/
@media (max-width: 719.98px) {

    .smallerText[b-cnsjfza5id]{
        font-size:10px;
    }

    .filterBox[b-cnsjfza5id] {
        width: 100%;
    }

    .playerSearchInput[b-cnsjfza5id] {
        width: 100%;
        font-size: 20px;
    }
}
/* /Pages/IndividualStat.razor.rz.scp.css */

.fantasy-table tr[b-4j9ce4alg5] {
    vertical-align: middle;
    color: #0a0d51;
}

.fantasy-table td[b-4j9ce4alg5] {
    min-width: 18.5px;
    vertical-align: middle;

}

.filter_select[b-4j9ce4alg5] {
    width:120px;
}

[b-4j9ce4alg5] div.mud-input-slot.mud-input-root-outlined {
    padding: 10px 14px;
}

.logo[b-4j9ce4alg5] {
    width: 30px;
}

.profile-pic[b-4j9ce4alg5] {
    height: 140px;
    border-radius: 70px;
    border: 2px solid #f0b310;
}

.player-info-box[b-4j9ce4alg5] {
    display: flex;
    align-content: stretch;
    padding: 15px;
    gap: 15px;
    flex-grow: 1;
    max-width: 350px;
    /*  border: 1px solid red;*/
}

.player-info-prop[b-4j9ce4alg5] {
    border-bottom: 1px solid #E8E8E8;
    padding: 5px 0px;
    color: #707070;
    font-weight: 600;
}


.player-info-value[b-4j9ce4alg5] {
    float: right;
    color: #0a0d51;
    font-weight: 600;
}

.mainCardSubHeader[b-4j9ce4alg5] {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 10px;
    gap: 15px;
}

.mainCardSubHeaderTitle[b-4j9ce4alg5] {
    display: flex;
    flex-flow: row wrap;
    column-gap: 30px;
    row-gap: 10px;
    align-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
    margin-right: 10px;
}



/*MOBILE VERSION*/
@media (max-width: 650px) {

    .mainCardSubHeaderTitle[b-4j9ce4alg5] {
        column-gap: 30px;
        row-gap: 10px;
        font-size: 20px;
    }
}
/* /Pages/LogPageAPI.razor.rz.scp.css */
/* /Pages/MatchStats.razor.rz.scp.css */
.sideSelector[b-u39e8dktom] {
    cursor: pointer;
    padding: 3px 4px;
}

.sideSelector-showing[b-u39e8dktom] {
    border-bottom: solid 3px #0a0d51;
    font-weight: 700;
}

.cardBasicContainer-matchDetails[b-u39e8dktom] {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    color: #0a0d51;
    padding: 10px 10px;
    gap: 10px;
    justify-content: center;
}

.drawerButton[b-u39e8dktom] {
    background-color: #dcdcdc; /* Gray */
    border: none;
    color: #0a0d51;
    padding: 5px 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    transition-duration: 0.4s;
    cursor: pointer;
    font-weight: 500;
}

    .drawerButton:hover[b-u39e8dktom] {
        background-color: #c3c3c3;
    }

.cardBasicContainer-match[b-u39e8dktom] {
    margin-top: 0;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    color: #0a0d51;
    padding: 10px 10px;
    gap: 10px;
}

    .cardBasicContainer-match:hover[b-u39e8dktom] {
        background: #f0b310;
    }

.cardBasicContainer-match-active[b-u39e8dktom] {
    background: #f0b310;
}


.scoreRow[b-u39e8dktom] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    font-weight: 900;
}

.scoreCenter[b-u39e8dktom] {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    color: white;
    background-color: #0a0d51;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 20px;
    font-weight: 900;
}


.scoreRowMatch[b-u39e8dktom] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 900;
}


.scoreCenterMatch[b-u39e8dktom] {
    color: white;
    background-color: #0a0d51;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 900;
}

.matchHeadingTeam[b-u39e8dktom] {
    font-size: 18px;
    font-weight: 750;
}



.solidHeading[b-u39e8dktom] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background-color: #0a0d51;
    color: white;
    padding: 5px 20px;
    font-weight: 500;
    font-size: 16px;
}


.player_row[b-u39e8dktom] {
    display: grid;
    grid-template-columns: 55px 1fr 1fr 55px;
    padding: 0px 0px;
}

    .player_row:nth-of-type(2n)[b-u39e8dktom] {
        background-color: #F8F8F8;
    }

    .player_row:nth-of-type(2n+1)[b-u39e8dktom] {
        background-color: #f1f1f1;
    }

.player_cell[b-u39e8dktom] {
    padding: 5px 10px;
}

.incidentDes[b-u39e8dktom] {
    color: gray;
    font-weight: 500;
}


.tab[b-u39e8dktom] {
    padding: 0 0px 7px 0px;
    cursor: pointer;
    margin-right: 20px;
    font-weight: 400;
}

.tab_active[b-u39e8dktom] {
    border-bottom: 4px solid #f0b310;
    font-weight: 700;
}



/*DESKTOP VERSION*/
@media (min-width: 919.97px) {

    .matchTeams[b-u39e8dktom] {
        display: flex;
        flex-flow: row nowrap;
        gap: 30px;
        justify-content: flex-end;
        align-items: center;
    }


    .teamLogo[b-u39e8dktom] {
        height: 75px;
    }

    .player_row_mobile[b-u39e8dktom] {
        display: none;
    }

    .player_sideBorder[b-u39e8dktom] {
        border-left: 2px solid #E8E8E8;
    }
}

/*MOBILE VERSION*/
@media (max-width: 919.98px) {

    .matchTeams[b-u39e8dktom] {
        display: flex;
        flex-flow: column nowrap;
        gap: 10px;
        justify-content: flex-end;
        align-items: center;
    }


    .teamLogo[b-u39e8dktom] {
        height: 45px;
    }

    .player_sideBorder[b-u39e8dktom] {
    }

    .scoreCenter[b-u39e8dktom] {
        gap: 4px;
        border-radius: 15px;
        padding: 5px 10px;
        font-size: 14px;
        font-weight: 700;
    }


    .player_row[b-u39e8dktom] {
        grid-template-columns: 55px 1fr 55px;
    }


    .tab[b-u39e8dktom] {
        padding: 0 0px 5px 0px;
        margin-right: 15px;
        font-weight: 400;
        font-size: 13px;
    }

    .tab_active[b-u39e8dktom] {
        border-bottom: 4px solid #f0b310;
        font-weight: 700;
    }
}
/* /Pages/MyTeams.razor.rz.scp.css */
.compCardContainer[b-ov616wgd3o] {
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
    align-items: flex-start;
    padding: 20px 0px;
    border-top: 1px solid #E8E8E8;
}


.myTeams-banner[b-ov616wgd3o] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0d51;
    height: 145px;
    color: white;
    font-size: 3rem;
    text-align: center;
    background-image: url('/images/my-teams-banner.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*  background-size: 100% 100%;*/
}

    .myTeams-banner h2[b-ov616wgd3o] {
        color: #f0b310;
        background-color: #0a0d51BB;
        padding: 8px 16px;
        border-radius: 16px;
    }



/* /Pages/OverallPoints.razor.rz.scp.css */
.cardBasicContainerFilter[b-kftpz67yl2] {
    padding: 0px;
    overflow: clip;
}

.filterCardTopHalf[b-kftpz67yl2] {
    padding: 20px;
    min-width: 200px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.filterCardBottomHalf[b-kftpz67yl2] {
    background-color: #0a0d51;
    color: white;
    padding: 20px 30px 30px 30px;
    flex-grow: 1;
    gap: 30px; 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.playerSearchInput[b-kftpz67yl2] {
    font-size: 25px;
    padding: 3px 5px;
    border-radius: 5px;
    color: gray;
    font-weight: 500;
    width: 250px;
}

.filterBox[b-kftpz67yl2] {
   
}

label[b-kftpz67yl2] {
    margin-bottom: 8px;
}

.sideSelector[b-kftpz67yl2] {
    cursor: pointer;
    padding: 3px 4px;
}

.sideSelector-showing[b-kftpz67yl2] {
    border-bottom: solid 3px #0a0d51;
    font-weight: 700;
}

.cardBasicContainer-matchDetails[b-kftpz67yl2] {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    color: #0a0d51;
    padding: 10px 10px;
    gap: 10px;
}

.container-matches[b-kftpz67yl2] {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    width: 320px;
    padding: 0px;
    margin-top: 30px;
    align-content: center;
}


.cardBasicContainer-match[b-kftpz67yl2] {
    margin-top: 0;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    color: #0a0d51;
    padding: 10px 10px;
    gap: 10px;
}

    .cardBasicContainer-match:hover[b-kftpz67yl2] {
        background: #f0b310;
    }

.cardBasicContainer-match-active[b-kftpz67yl2] {
    background: #f0b310;
}

.scoreRow[b-kftpz67yl2] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    font-weight: 900;
}

.scoreCenter[b-kftpz67yl2] {
    color: white;
    background-color: #0a0d51;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 20px;
    font-weight: 900;
}


.scoreRowMatch[b-kftpz67yl2] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 900;
}


.scoreCenterMatch[b-kftpz67yl2] {
    color: white;
    background-color: #0a0d51;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 900;
}

.matchHeadingTeam[b-kftpz67yl2] {
    font-size: 18px;
    font-weight: 750;
}

.matchTeams[b-kftpz67yl2] {
    display: flex;
    flex-flow: row nowrap;
    gap: 30px;
    justify-content: flex-end;
    align-items: center;
}


.matchTabs[b-kftpz67yl2] {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 4px;
}

    .matchTabs a[b-kftpz67yl2] {
        cursor: pointer;
        text-align: center;
        flex-grow: 1;
        color: #0a0d51;
    }

        .matchTabs a:hover[b-kftpz67yl2] {
            color: #0d6efd;
        }


.matchTabs-active[b-kftpz67yl2] {
    font-weight: 700;
    border-bottom: solid 3px #0a0d51;
}



.teamName :hover[b-kftpz67yl2] {
    text-decoration: underline;
}


.downloadExcelBox[b-kftpz67yl2] {
    border-radius: 10px;
    padding: 5px;
    width: 72px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: 0;
}

    .downloadExcelBox img[b-kftpz67yl2] {
        margin: 0 5px;
        height: 20px;
    }

.extra_option[b-kftpz67yl2] {
    font-weight: 700
}

[b-kftpz67yl2] div.mud-input-slot.mud-input-root-outlined {
    padding: 10px 14px;
}


.mainCardSubHeader[b-kftpz67yl2] {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding:10px;
    gap:15px;
}

.mainCardSubHeaderTitle[b-kftpz67yl2] {
    display: flex;
    flex-flow: row wrap;
    column-gap: 30px;
    row-gap: 10px;
    align-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
    margin-right: 10px;
}

/*DESKTOP VERSION*/
@media (min-width: 649.98px) {

    .firstColumn[b-kftpz67yl2] {
        padding-left: 20px
    }

    .smallerText[b-kftpz67yl2] {
    }

    .tableContainer[b-kftpz67yl2] {
        flex-grow: 1;
    }
}


/*MOBILE VERSION*/
@media (max-width: 650px) {

    .smallerText[b-kftpz67yl2] {
        font-size: 10px;
    }

    .filterBox[b-kftpz67yl2] {
        width: 100%;
    }

    .playerSearchInput[b-kftpz67yl2] {
        width: 100%;
        font-size: 15px;
    }

    .filterCardBottomHalf[b-kftpz67yl2] {
        padding: 10px 15px 22px 15px;
        gap: 10px;
    }

    .filterCardTopHalf[b-kftpz67yl2] {
        padding: 10px;
    }

    .mainCardSubHeaderTitle[b-kftpz67yl2] {
        column-gap: 30px;
        row-gap: 10px;
        font-size: 20px;

    }
}
/* /Pages/Settings.razor.rz.scp.css */
.form-control-basic[b-pvhbo82w0n]{
    margin:10px 5px;
    max-width:400px;
}

[b-pvhbo82w0n] .mud-input {
    background-color: white;
    margin: 10px 5px;
    max-width: 400px;
}
/* /Pages/Standings.razor.rz.scp.css */
.teamName :hover[b-4gfvighn96] {
    text-decoration: underline;
}



/*DESKTOP VERSION*/
@media (min-width: 919.97px) {

    .standingsTable td[b-4gfvighn96] {
        min-width: 70px;
    }

}


/* /Pages/UserEdit.razor.rz.scp.css */
.sr-only[b-uxa5hc10qh] {
    sr-only position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.input-label[b-uxa5hc10qh] {
    padding: 10px;
    background-color: lightblue;
    color: dimgray;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 15px;
    
}


.avatarImagelabel[b-uxa5hc10qh] {
    cursor: pointer;
    border: 2px solid gray;
    border-radius: 20px;
   
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-j5pjnkc0ju] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-j5pjnkc0ju] {
    flex: 1;
}


.copyrightFooter[b-j5pjnkc0ju] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: #0a0d51;
    color: white;
    margin-top:0px;
}

@media (max-width: 649.98px) {
    .page[b-j5pjnkc0ju] {
        flex-direction: row;
    }

    article[b-j5pjnkc0ju] {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }


}

@media (min-width: 650px) {
    .page[b-j5pjnkc0ju] {
        flex-direction: row;
    }

    article[b-j5pjnkc0ju] {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

/* /Shared/ToolBar.razor.rz.scp.css */
/*MAIN TOOL BAR*/

.toolBar-main[b-02eebvt5vj] {
    /*border: 1px solid green;*/
    display: grid;
    grid-template-columns: 1fr 5fr;
    font-family: sz-font1, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.logoBox[b-02eebvt5vj] {
    position: relative;
    height: 120px;
    display: flex;
    justify-content: center;
}

    .logoBox img[b-02eebvt5vj] {
        margin: 20px;
        height: 120px;
        z-index: 16;
        position: relative;
        cursor: pointer;
    }

.logBox-topHalf[b-02eebvt5vj] {
    position: absolute;
    background-color: #0a0d51;
    height: 120px;
    width: 100%;
    top: 0px;
    left: 0px;
    border-right: 2px solid #232776;
    border-bottom: 2px solid #232776;
    z-index: 15;
}

.navBox[b-02eebvt5vj] {
}

.navBox-top[b-02eebvt5vj] {
    display: flex;
    justify-content: space-between;
    height: 45px;
    background-color: #080a3b;
    border-bottom: 1px solid #232776;
    overflow: hidden;
}



.navBox-top-sports[b-02eebvt5vj] {
}

    .navBox-top-sports img[b-02eebvt5vj] {
        height: 25px;
        margin: 10px 10px 10px 19px;
    }

    .navBox-top-sports a[b-02eebvt5vj] {
        color: gray;
        height: 25px;
        margin: 15px 10px 15px 0px;
        padding: 5px 0;
    }

        .navBox-top-sports a:hover[b-02eebvt5vj] {
            cursor: pointer;
            color: #00a7fd;
        }

        .navBox-top-sports a.active[b-02eebvt5vj] {
            color: #00a7fd;
        }

    .navBox-top-sports span[b-02eebvt5vj] {
        color: gray;
    }


.navBox-pages[b-02eebvt5vj] {
    display: flex;
    height: 75px;
    background-color: #0a0d51;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #232776;
}

.navBox-pages-left[b-02eebvt5vj] {
    display: flex;
}

.avatar_border[b-02eebvt5vj] {
    border: 2px solid white;
}

.main-item[b-02eebvt5vj] {
    position: relative;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 200;
}

    .main-item:hover .submenulist[b-02eebvt5vj] {
        visibility: visible;
    }


.main-item-link a[b-02eebvt5vj] {
    color: white;
    padding: 30px 20px;
}

    .main-item-link a:hover[b-02eebvt5vj] {
        color: #f0b310;
        cursor: pointer
    }

    .main-item-link a.main-item-active[b-02eebvt5vj] {
        color: #f0b310;
    }


.submenulist[b-02eebvt5vj] {
    visibility: hidden;
    width: 220px;
    text-align: center;
    padding: 0px 0px;
    position: absolute;
    z-index: 100;
    top: 52px;
    left: 50%;
    margin-left: -110px;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 800;
    font-family: sz-font2, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.subitem[b-02eebvt5vj] {
    background-color: rgb(226, 226, 232); /* Mixed with 95% white */
    padding: 10px 7px;
    font-size: 14px;
    font-family: sz-font2, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #0a0d51;
    font-weight: 700;
    cursor: pointer;
}

    .subitem:hover[b-02eebvt5vj] {
        background-color: #f0b310;
    }

.chatButton[b-02eebvt5vj] {
    position: relative; 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .chatButton img[b-02eebvt5vj] {
        width: 36px; /* icon size */
        height: 36px;
        display: block;
        content: url("images/chat-icon-white.svg");
    }

    .chatButton:hover img[b-02eebvt5vj] {
        content: url("images/chat-icon-gold.svg");
    }

    .chatButton.chatOpen img[b-02eebvt5vj] {
        content: url("images/chat-icon-gold.svg"); /* open overrides everything */
    }

.chatBadge[b-02eebvt5vj] {
    font-family: sz-font2, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #F24F3E;
    color: white;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 3px; /* pill for 2+ digits */
    border-radius: 999px; /* circle/pill shape */
    text-align: center;
    flex-shrink: 0;
    border: 2px solid white;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}





/*MINI TOOL BAR*/

.toolBar-mini-toprow[b-02eebvt5vj] {
    height: 50px;
    display: flex;
    border-bottom: 2px solid #232776;
}

    .toolBar-mini-toprow a[b-02eebvt5vj] {
        cursor: pointer;
        margin: 0 5px 0 5px;
    }


    .toolBar-mini-toprow img[b-02eebvt5vj] {
        height: min(30px, calc(7vw))
    }

.toolBar-mini-toprow-right[b-02eebvt5vj] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding-right: 10px;
}




.minilogoBox[b-02eebvt5vj] {
    position: relative;
    height: 50px;
    display: flex;
    justify-content: center;
}

    .minilogoBox img[b-02eebvt5vj] {
        margin: 10px;
        height: 50px;
        z-index: 16;
    }

.minilogoBox-topHalf[b-02eebvt5vj] {
    position: absolute;
    background-color: #0a0d51;
    height: 50px;
    width: 100%;
    top: 0px;
    left: 0px;
    border-right: 1px solid #232776;
    z-index: 15;
}



.pagesDrawer[b-02eebvt5vj] {
    background-color: #0a0d51;
    margin-top: 0px;
    margin-bottom: 0px;
    border-top: 2px solid #232776;
    border-bottom: 2px solid #232776;
    display: flex;
    flex-flow: column nowrap;
    /*    transition-duration: 4s;
    transition-delay: 2s;*/
}

.main-item-mobile[b-02eebvt5vj] {
    color: white;
    text-align: center;
    margin: 0 0 0 80px;
    text-decoration: none;
    font-size: 1.2rem;
    /*  border: 1px solid green;*/
    line-height: 45px;
}

    .main-item-mobile:hover[b-02eebvt5vj] {
        color: #f0b310;
        cursor: pointer
    }

        .main-item-mobile:hover .arrow-down[b-02eebvt5vj] {
            border-top-color: #f0b310;
        }

        .main-item-mobile:hover .arrow-up[b-02eebvt5vj] {
            border-bottom-color: #f0b310;
        }

    .main-item-mobile.active[b-02eebvt5vj] {
        color: #f0b310;
    }


.submenulist-mobile[b-02eebvt5vj] {
    padding: 0px;
    display: flex;
    flex-flow: column nowrap;
}

.submenulist-hidden[b-02eebvt5vj] {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

.submenulist-shown[b-02eebvt5vj] {
    opacity: 1;
    visibility: visible;
    max-height: 500px; /* Adjust to the max height of the content */
    transition: opacity 1.0s ease, max-height 1.0s ease;
}

.subitem-mobile[b-02eebvt5vj] {
    padding: 10px 50px;
}

.arrow-down[b-02eebvt5vj] {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid white;
}

.arrow-down-active[b-02eebvt5vj] {
    border-top-color: #f0b310;
}


.arrow-up[b-02eebvt5vj] {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid white;
}


.arrow-up-active[b-02eebvt5vj] {
    border-bottom-color: #f0b310;
}


.dev-background[b-02eebvt5vj] {
    background-color: #F9629F;
}

.logoutTextButton[b-02eebvt5vj] {
    color: white;
    font-size: 1.2rem;
}
