* {
    font-family: "M PLUS 1p";
}

.hidden {
    display: none;
}

.global-container {
    width: 100%;
    height: 100%;
    border: solid 18px transparent;
    display: flex;
}

.left-container {
    width: 272px;
    height: 100%;
    margin-left: 3px;
    margin-top: 5px;
}

.container-spacer {
    width: 14px;
    height: 100%;
}

.right-container {
    margin-left: 26px;
    margin-top: 4px;
    height: 100%;
    width: calc(100% - 286px);
    background-image: url(../../img/bg/frameblackbase.png);
    background-repeat: no-repeat;
}

.help {
    padding: 0px;
    position: relative;
    overflow-y: scroll;
    height: 100%;
}

.content-wrapper {
    height: 100%;
    width: 100%;
    padding: 14px;
}

.content {
    position: relative;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    color: white;
}

.help-list-item {
    font-weight: bold;
}

.open-button {
    width: 258px;
    height: 46px;
    background-image: url("../img/btn_help_normal.png");
    background-repeat: no-repeat;
    border-radius: 6px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #374449;
    padding-left: 18px;
    user-select: none;
}

input:checked + .open-button {
    background-image: url("../img/btn_help_active.png");
    background-repeat: no-repeat;
    color: #46423c;
}

.help-content-list {
    overflow: hidden;
    max-height: 0;
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
	font-weight: bold;
}

input:checked + .open-button + .help-content-list {
    padding-top: 8px;
    padding-bottom: 8px;
}

input:checked + .open-button + .help-content-list.h50 {max-height: 50px;}
input:checked + .open-button + .help-content-list.h100 {max-height: 100px;}
input:checked + .open-button + .help-content-list.h150 {max-height: 150px;}
input:checked + .open-button + .help-content-list.h200 {max-height: 200px;}
input:checked + .open-button + .help-content-list.h250 {max-height: 250px;}
input:checked + .open-button + .help-content-list.h300 {max-height: 300px;}
input:checked + .open-button + .help-content-list.h350 {max-height: 350px;}
input:checked + .open-button + .help-content-list.h400 {max-height: 400px;}
input:checked + .open-button + .help-content-list.h450 {max-height: 450px;}
input:checked + .open-button + .help-content-list.h500 {max-height: 500px;}
input:checked + .open-button + .help-content-list.h550 {max-height: 550px;}
input:checked + .open-button + .help-content-list.h600 {max-height: 600px;}
input:checked + .open-button + .help-content-list.h650 {max-height: 650px;}
input:checked + .open-button + .help-content-list.h700 {max-height: 700px;}
input:checked + .open-button + .help-content-list.h750 {max-height: 750px;}
input:checked + .open-button + .help-content-list.h800 {max-height: 800px;}
input:checked + .open-button + .help-content-list.h850 {max-height: 850px;}
input:checked + .open-button + .help-content-list.h900 {max-height: 900px;}
input:checked + .open-button + .help-content-list.h950 {max-height: 950px;}
input:checked + .open-button + .help-content-list.h1000 {max-height: 1000px;}
input:checked + .open-button + .help-content-list.h1050 {max-height: 1050px;}

.help-content-item {
    width: 236px;
    height: 24px;
    display: flex;
    color: white;
    align-items: center;
    padding-left: 0px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
}

.help-content-item + .help-content-item {
    margin-top: 6px;
}

.help-content-item:hover {
    color: #25de62;
}

.help-content-item.active {
    color: #25de62;
}

.help-header {
    width: 474px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    background-image: url("../img/img_help_titleheader.png");
    margin-right: 14px;
    margin-top: 2px;
}

.help-title {
    width: 474px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #9d9070;
}

.help-content {
    font-size: 14px;
    width: 100%;
    white-space: pre-wrap;
    word-break: break-word;
    margin-left: 0px;
}

.help-image {
    padding-top: 15px;
    padding-bottom: 0px;
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image img {
    width: 10%;
    flex-grow: 1;
    flex-shrink: 1;
}

.image img + img {
    margin-left: 5px;
}

.separator {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: #52483f;
}

::-webkit-scrollbar-thumb {
    background-color: #c9ad91;
    border-radius: 0px;
}
