*,*:before,*:after {
    box-sizing: border-box;
    word-break: keep-all;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    font-family: 'NanumSquareNeo-Variable';
    font-size: 16px;
    overflow-x: hidden;
}

@font-face {
    font-family: 'NanumSquareNeo-Variable';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/NanumSquareNeo-Variable.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

a {
    color: inherit;
    text-decoration: none;
}
p {
    margin: 0;
}
ul,ol,li{list-style: none;}

textarea{
    font-family: 'NanumSquareNeo-Variable';
}
input {
    font-family: 'NanumSquareNeo-Variable';
    cursor: pointer;
}

/**/
#wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 100%;
}

/* header */
.header_wrap {
    position: fixed;
    padding: 20px 30px 25px 30px;
    background: #fff;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    box-sizing: border-box;
    height: 100px;
    border-bottom: 1px solid #ddd;
}
.myclass_logo {
    max-width: 300px;
    max-height: 100px;
    position: absolute;
    left: 20px;
    top: 20px;
}
.header_content {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}
.user_name {
    margin-right: 20px;
    line-height: 30px;
}
.homeBtn {
    display: block;
    text-align: center;
    padding-top: 3px;
    border: none;
    width: 100px; 
    height: 30px;
    border-radius: 45px;
    color: #fff;
    background: linear-gradient(to right, #3A1078 ,#3795BD);
    cursor: pointer;
    font-family: "NanumSquareNeo";
    font-weight: 700;
}

/* content */
#body_wrap {
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    position: relative;
}
.my_content {
    /* background: #3795BD; */
    position: absolute;
    width: calc(100% - 250px);
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
    min-height: 1000px;
    right: 0;
}

/* sidemenu */
.my_sidemenu {
    position: relative;
    width: 250px;
    box-sizing: border-box;
    background-color: #fff;
    float: left;
    z-index: 999;
    display: block;
}
.nav_item {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}
.menuInner>li {
    /* line-height: 35px; */
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.menuInner>li:first-child {
    padding-top: 15px;
}
.menuInner>li:last-child {
    padding-bottom: 15px;
}
.menuInner>li>a {
    width: 100%;
    padding-left: 50px;
    font-size: 16px;
    font-weight: 500;
}
.menuInner>li::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12%;
    display: block;
    content: '';
    width: 6px;
    height: 2px;
    background: #036EB8;
}

.myclass {
    position: relative;
}
.myclass::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #036EB8;
    border-right: 2px solid #036EB8;
    transform: rotate(135deg);
    position: absolute;
    top: 20px;
    right: 20px;
}
/* .myclass::before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: #036EB8;
} */
.notice {
    position: relative;
}
.notice::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #036EB8;
    border-right: 2px solid #036EB8;
    transform: rotate(135deg);
    position: absolute;
    top: 20px;
    right: 20px;
}
.menuInner>li:hover a{
    color: #036EB8;
    font-weight: 700;
}
.sidemenu_inner {
    width: 100%;
    display: block;
}
.sidemenu_bar {
    position: absolute;
    z-index: 999;
    width: 4px;
    height: 58px;
    background: #036EB8;
    left: 0;
    top: 0;
}
.sidemenu_bar2 {
    position: absolute;
    z-index: 999;
    width: 4px;
    height: 58px;
    background: #036EB8;
    left: 0;
    top: 0;
}
.sidemenu_inner>a{
    background: #F7F8F8;
    padding: 20px 53px;
    width: 100%;
    display: inline-block;
    font-weight: 700;
}
.sidemenu_inner.icon1>a {
    background-image: url("./img/myclass_home_icon.png");
    background-repeat: no-repeat;
    background-position: top 54% left 13px;
}
.sidemenu_inner.icon2>a {
    background-image: url("./img/myclass_notice_icon.png");
    background-repeat: no-repeat;
    background-position: top 54% left 13px;
}

/* 강좌 콘텐츠 */

.myclass_courseDetail {
    margin: 20px 0;
}
.myclass_courseDetail>dl {
    width: 700px;
    font-size: 15px;
    display: flex;
}
.myclass_courseDetail>dl>dt {
    width: 100px;
    font-weight: 700;
    padding: 8px 0;
}
.myclass_courseDetail>dl>dd {
    width: 500px;
    color: #808080;
    padding: 8px 0;
}
.course_chart {
    text-align: center;
}
.course_chart > b {
    display: block;
    font-size: 30px;
    padding: 10px 0;
}

/* 강의 듣기 */

.course_list {
    width: 100%;
    padding: 20px;
}
.title_border {
    width: 20%;
    height: 5px;
    margin: 20px 0;
    background: linear-gradient(to right, #3A1078 ,#3795BD);
}
.course_list_table {
    width: 100%;
}
.tableHead {
    background: #036EB8;
    text-align: center;
    color: #fff;
}
.tableHead>th {
    padding: 20px 0;
}
/* .tableHead>th:first-child {
    border-radius: 25px 0 0 0;
}
.tableHead>th:last-child {
    border-radius: 0 25px 0 0;
} */
.studyBtn {
    width: 150px;
    height: 30px;
    background: #003C5E;
    color: #fff;
    border-radius: 25px;
    border: none;
}
.tableBody {
    text-align: center;
}
.tableBody>td {
    padding: 10px 0;
}
.tableBody>td>span {
    color: #aaa;
}
.courseTitle {
    text-align: left;
    text-indent: 30px;
    font-weight: 700;
}

/* 시험용 */


/* 시험 */
/* 탭 메뉴 */
.myclass_test_area {
    width: 100%;
}
ul.myclass_test_tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    height: auto;
}
ul.myclass_test_tabs li {
    background: none;
    color: #222;
    display: inline-block;
    height: 50px;
    width: 50%;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #eee;
}
ul.myclass_test_tabs li.current {
    background: #fff;
    color: #333;
    border-bottom: 3px solid #036EB8;
    font-weight: 700;
}
.tab-content {
    margin-top: 10px;
    display: none;
    padding: 15px;
    height: auto;
    width: 90%;
}
.tab-content.current {
    display: inherit;
}
/* tab1 */
.myclass_test_line {
    height: 2px;
    width: 100%;
    background: #e0e0e0;
    margin-top: 20px;
}
.test-title {
    display: flex;
    justify-content: space-between;
}
.btnTest {
    width: 150px;
    height: 40px;
    background-color: #003C5E;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
}
.myclass_test_table {
    margin: 5px 0;
}
.myclass_test_table tbody tr td {
    padding: 8px 0;
}
.myclass_table_dt {
    width: 120px;
    font-weight: 700;
}
.myclass_table_dd {
    color: #808080;
}
.myclass_test_notice h4 {
    padding: 10px 0;
    color: #C30D23;
}
.btnTest {
    width: 150px;
    height: 40px;
    background-color: #003C5E;
    text-align: center;
    line-height: 40px;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
}

/* 과제 */
.myclass_hw_line {
    height: 2px;
    width: 100%;
    background: #e0e0e0;
    margin-top: 15px;
}
.myclass_hw_notice {
    padding: 20px 0;
}
.myclass_hw_notice h4 {
    padding: 10px 0;
}
.myclass_hw_notice p {
    padding: 5px 0;
}

/* 설문 */
.surveyForm {
    padding: 10px;
}
.surveyTable {
    margin: 20px;
    border-bottom: 1px solid #e1e1e1;
    width: 90%;
}
.surveyTitle {
    padding-bottom: 8px;
}
.surveyAnswer {
    padding-top: 5px;
}
.surveyDesc {
    padding-left: 8px;
}
.surveyList:last-child {
    padding-bottom: 17px;
}