<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#main {
	padding: 0;
	width: 100%;
	max-width: 1090px;
}

#supportheadercontainer {
	background: var(--background-light-gray);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 120px;
    color: white;
}

#supportheadercontainer h1 {
	font-size: 2.25em;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.helpoptionscontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Space between elements */
    margin-top: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.helpoption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background-color: var(--button-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.helpoption:hover {
    background-color: var(--button-primary-hover);
    color: white;
}

.helpoption .fas {
	font-size: 3em;
}

.helpoption i {
	margin-bottom: 5px;
}

.helptopiccontainer {
	padding: 0 45px;
	margin-top: 5px;
}

.helptopic {
	background: var(--background-darker);
	margin-bottom: 4px;
}

.helptopic .showhiddenpanel {
	display: block;
	font-size: large;
	text-decoration: none;
	color: white;
	width: calc(100% - 20px);
	padding: 10px;
	transition: background 0.3s;
	background: var(--background-darker-row);
}

.helptopic .showhiddenpanel:hover {
    background: var(--background-main);
}

.helptopic .showhiddenpanel .fa {
	margin-right: 10px;
}

.helptopic .helptopicimage {
	max-width: 100%;
}

.helptopic .helptopicimage img {
	max-width: 100%;
	width: auto;
	height: auto;
	display: block;
}

.helppanel {
	padding: 10px 20px;
}

.helppanel p:first-of-type {
    margin-top: revert;
}

.helppanel p {
	margin-top: 0;
}

.helppanel .videotutorial {
	text-align: center;
	position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin-bottom: 20px;
}

.helppanel .videotutorial iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile */
@media only screen and (max-width: 820px) {
	.helptopiccontainer {
		padding: 0 5px;
		margin-top: 5px;
	}
}



.imgwrapper {
	width: 100%;
	margin-bottom: 10px;
}

.imgwrapper.halfwidth {
	width: 50%;
	display: inline-block;
}

.smallmodal {
	max-width: 500px;
}

.imgwrapper img {
	width: 100%;
	height: auto;
}

</pre></body></html>