/* common */
html, body, header, .wrapper {
    height: 100%;
}

/* btn */
.btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #2a44fb;
    color: #fff !important;
}

/* radio */
.radio-box label {
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: #777;
}

.radio-box label:before {
    display: inline-block;
    width: 19px;
    height: 19px;
    content: "";
    background: url('/img/icon_radio_off.svg') no-repeat center / cover;
    margin-right: 6px;
}

/* header */
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 246px;
    background: #fff;
    padding: 54px 25px 0;
}

header h1 {
    text-align: center;
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    color: #2a44fb;
}

header ul {
    margin: 85px 0 0;
    padding-left: 10px;
}

header ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 54px;
    position: relative;
}

header ul li.active:after {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 42px;
    background: #2a44fb;
    content: "";
    border-radius: 10px;
}

header ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    padding-left: 26px;
    font-size: 20px;
    font-weight: 600;
    color: #bbbbbb !important;
}

header ul li.active a {
    color: #494853 !important;
}

header ul li a:hover {
    color: #494853 !important;
}

header .logout {
    width: 163px;
    height: 57px;
    font-size: 20px;
    color: #fff;
    border-radius: 30px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
}

/* section */
section {
    width: calc(100% - 246px);
    margin-left: 246px;
    background: #F0F0F6;
    padding: 54px 0;
}

section .sub-title {
    padding-left: 52px;
}

section .sub-title .back {
    display: inline-block;
    width: 32px;
    height: 32px;
    font-size: 0;
    background: url('/img/icon_back.svg') no-repeat center / cover;
    margin-right: 425px;
}

section .sub-title h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: #494853;
}
