/* /Components/Controls/HashTagsView.razor.rz.scp.css */
.tags[b-1dt98yccm4] {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hashtag-chip[b-1dt98yccm4] {
	background-color: #d3d3d3;
}
/* /Components/DiffViewer.razor.rz.scp.css */
.diff-viewer[b-gey65gwg8k] {
	border: 1px solid #d0d7de;
	border-radius: 6px;
	overflow: hidden;
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
	font-size: 12px;
	min-height: 300px;
}

.diff-header[b-gey65gwg8k] {
	display: flex;
	background-color: #f6f8fa;
	border-bottom: 1px solid #d0d7de;
}

.left-header[b-gey65gwg8k], .right-header[b-gey65gwg8k] {
	flex: 1;
	padding: 8px 12px;
	font-weight: 600;
	color: #24292f;
}

.left-header[b-gey65gwg8k] {
	border-right: 1px solid #d0d7de;
}

.diff-content[b-gey65gwg8k] {
	display: flex;
	max-height: 500px;
	overflow: auto;
}

.left-panel[b-gey65gwg8k], .right-panel[b-gey65gwg8k] {
	flex: 1;
	min-width: 0;
}

.left-panel[b-gey65gwg8k] {
	border-right: 1px solid #d0d7de;
}

.line[b-gey65gwg8k] {
	display: flex;
	min-height: 20px;
	line-height: 20px;
	white-space: nowrap;
}

.line-number[b-gey65gwg8k] {
	width: 50px;
	padding: 0 8px;
	text-align: right;
	color: #656d76;
	background-color: #f6f8fa;
	border-right: 1px solid #d0d7de;
	user-select: none;
	flex-shrink: 0;
}

.line-content[b-gey65gwg8k] {
	padding: 0 8px;
	white-space: pre;
	overflow-x: auto;
	flex: 1;
}

.line.inserted[b-gey65gwg8k] {
	background-color: #d1f4d0;
}

	.line.inserted .line-number[b-gey65gwg8k] {
		background-color: #a7f3d0;
	}

.line.deleted[b-gey65gwg8k] {
	background-color: #ffeef0;
}

	.line.deleted .line-number[b-gey65gwg8k] {
		background-color: #fecdd3;
	}

.line.modified[b-gey65gwg8k] {
	background-color: #fff8dc;
}

	.line.modified .line-number[b-gey65gwg8k] {
		background-color: #fef3c7;
	}

.line.unchanged[b-gey65gwg8k] {
	background-color: #ffffff;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-mr25bnznd3],
.components-reconnect-repeated-attempt-visible[b-mr25bnznd3],
.components-reconnect-failed-visible[b-mr25bnznd3],
.components-pause-visible[b-mr25bnznd3],
.components-resume-failed-visible[b-mr25bnznd3],
.components-rejoining-animation[b-mr25bnznd3] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-mr25bnznd3],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-mr25bnznd3],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-mr25bnznd3],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-mr25bnznd3],
#components-reconnect-modal.components-reconnect-retrying[b-mr25bnznd3],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-mr25bnznd3],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-mr25bnznd3],
#components-reconnect-modal.components-reconnect-failed[b-mr25bnznd3],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-mr25bnznd3] {
    display: block;
}


#components-reconnect-modal[b-mr25bnznd3] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-mr25bnznd3 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-mr25bnznd3 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-mr25bnznd3 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-mr25bnznd3]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-mr25bnznd3 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-mr25bnznd3 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-mr25bnznd3 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-mr25bnznd3 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-mr25bnznd3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-mr25bnznd3] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-mr25bnznd3] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-mr25bnznd3] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-mr25bnznd3] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-mr25bnznd3] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-mr25bnznd3] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-mr25bnznd3 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-mr25bnznd3] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-mr25bnznd3 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Quizzles.razor.rz.scp.css */
.card[b-fssn5kuoie] {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 20px;
	height: 100%;
	background: none;
}

.card svg[b-fssn5kuoie] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.card-icon-button-container[b-fssn5kuoie] {
	position: absolute;
	left: 10px;
	top: 45px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	width: var(--icon-size-list);
	z-index: 10;
	pointer-events: auto;
}

.card-icon-button-container .card-icon-list[b-fssn5kuoie] {
	position: relative;
	top: 0;
	left: 0;
}

.card.card-changes-devonly svg[b-fssn5kuoie] {
	filter: saturate(0.65) brightness(1.05);
	opacity: 0.8;
}

.card-content[b-fssn5kuoie] {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 16px;
	height: 100%;
}

.subtitle[b-fssn5kuoie], .byWho[b-fssn5kuoie] {
	font-family: Source Sans Pro;
	font-size: 16px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #002366;
	margin-left: 80px;
}

.tags-quizzles-list[b-fssn5kuoie] {
	display: grid;
	grid-template-columns: 1fr auto; /* left: tags, right: buttons */
	column-gap: 16px;
	row-gap: 10px;
	align-items: start;
	margin: 5px 10px 15px 70px;
}

.buttons[b-fssn5kuoie] {
	display: flex;
	align-items: center;
	gap: 10px;	
	margin: 10px 25px;
}

.tag[b-fssn5kuoie] {
	font-family: Source Sans Pro;
	font-size: 16px;
	font-weight: 400;
	line-height: 20.11px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #002366;
}
