body {
    margin: 0;
    font-family: 'inter', 'sans-serif';
}

.contentSection {
    position: fixed;
    top: 89px;
    left: 232px;
    bottom: 0;
    right: 0;
}

.overlaySection {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.hideScrollBarY {
    overflow-y: hidden;
}

.helpScreenSection {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 80px 80px 80px;
    overflow-y: scroll;
    height: 100%;
}

.helpScreenSectionHeadline {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.helpScreenSection h1 {
    font-size: 60px;
    font-weight: 700;

}

.helpScreenSection h2 {
    font-size: 24px;
    font-weight: 700;

}

.helpScreenSection h3 {
    font-size: 16px;
    font-weight: 700;
}

.helpScreenSection span {
    font-size: 16px;
    font-weight: 400;

}

.helpScreenSection ol ::marker {
    font-size: 27px;
    font-weight: 700;

}

.helpScreenSection li {
    font-size: 16px;
    font-weight: 400;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #FFFFFF;
}

::-webkit-scrollbar
{
	width: 10px;
	background-color: #FFFFFF;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #A8A8A8;
}