nav {
    width: 100%;
    height: 68px;
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: #0080b3;
    border-style: solid;
    border-width: 1px;
    border-color: #e1e1e1;
    border-top: none;
    border-left: none;
    border-right: none;
    box-sizing: border-box;
}
nav::before {
    content: '';
    display: block;
    width: 100%;
    height: 74%;
    background-color: #1EA1E8;
    position: absolute;
    bottom: -74%;
    left: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: .3s ease-in-out;
}
nav.hover::before {
    pointer-events: visible;
    opacity: 1;
}

#logo {
    width: auto;
    height: 64px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-left: 10px;
    display: block;
    float: left;
}

#logo img {
    width: auto;
    height: 100%;
}

/* fix svg windows 7 ie 11 */
.ie9 img[src$=".svg"] {
    width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    img[src$=".svg"] {
        width: 100%;
    }
}

.nav_burger {
    display: none;
}

ul.nav_menu {
    height: 68px;
    margin-left: 10px;
    display: block;
    float: left;
}
ul.nav_menu.right {
    float: right;
}

ul.nav_menu li {
    display: inline-block;
}

a.nav_menu_list_a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 10px;
    border-bottom: 3px solid rgba(0, 0, 0, 0);
    transition: all .2s ease;
    -webkit-transition: all.2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
}

a.nav_menu_list_a:hover {
    color: #f9b900;
    border-bottom: 3px solid #f9b900;
}

/*20220216*/
ul.nav_menu_sublist {
    pointer-events: none;
    position: absolute;
    top: 68px;
    opacity: 0;
    transition: .3s ease-in-out;
}
ul.nav_menu_sublist li {
    display: inline-block;
}
ul.nav_menu_sublist li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    transition: all .2s ease;
    -webkit-transition: all.2s ease;
}
ul.nav_menu_sublist li a:hover {
    color: #f9b902;
}
a.nav_menu_list_a:hover + ul.nav_menu_sublist,
ul.nav_menu_sublist:hover {
    pointer-events: visible;
    opacity: 1;
}
/*20220216*/

a.nav_menu_list_a.event {color: #f9b900;}
a.nav_menu_list_a.event:hover {color: #926c00;}
a.nav_menu_list_a.ai {color: #19C37D;position: relative;}
a.nav_menu_list_a.ai:hover {color: #0080B3;}
a.nav_menu_list_a.ai::before {
    content: "\F05B";
    display: block;
    color: #f9b900;
    font-family: FontAwesome;
    position: absolute;
    top: 1em;
    left: -0.3em;
    z-index: -1;
    opacity: 0.8;
}

ul.nav_login {
    height: 68px;
    margin-right: 20px;
    display: block;
    float: right;
    cursor: default;
}

li.nav_login_list {
    display: block;
    float: right;
    padding: 10px 15px;
    font-size: 16px;
    margin-top: 5px;
    line-height: 20px;
    color: #fff;
}

li.nav_login_list a.nav_login_list_lv,
li.nav_login_list a.nav_login_list_point {
    color: #fff;
    border-bottom: 1px solid #fff;
}

li.nav_login_list a.nav_login_list_lv:hover,
li.nav_login_list a.nav_login_list_point:hover {
    color: #f9b900;
    border-bottom: 1px solid #f9b900;
}

a.nav_login_a {
    color: #fff;
}

a.nav_login_a:hover {
    color: #f9b900;
}

ul.nav_login li.nav_login_photo {
    margin-left: 20px;
    padding: 0;
    width: 70px;
    height: 50px;
    padding-right: 20px;
    line-height: 50px;
    text-align: center;
    margin-top: 8px;
    cursor: pointer;
    transition: all .3s ease;
    -webkit-transition: all.3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

ul.nav_login li.nav_login_photo .nav_login_photo_img {
    width: 50px;
    height: 50px;
    float: left;
    position: relative;
}

ul.nav_login li.nav_login_photo .nav_login_photo_img img {
    border-radius: 50%;
}

ul.nav_login li.nav_login_photo .nav_login_photo_img:before {
    content: "";
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 999rem;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: all .3s ease;
    -webkit-transition: all.3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

ul.nav_login li.nav_login_photo:hover .nav_login_photo_img:before {
    background-color: rgba(0, 0, 0, .3);
}

ul.nav_login li.nav_login_photo .nav_login_photo_img:after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: url('../img/down-arrow.svg') right bottom no-repeat;
    background-size: 15px auto;
    transition: all .3s ease;
    -webkit-transition: all.3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    position: absolute;
    top: 21px;
    right: -21px;
}

ul.nav_login li.nav_login_photo:hover .nav_login_photo_img:after,
ul.nav_login li.nav_login_photo.open .nav_login_photo_img:after {
    background-image: url('../img/down-arrow-hover.svg');
}


ul.nav_login li.nav_login_remind {
    width: 22px;
    height: 22px;
    margin-top: 21px;
    cursor: pointer;
    background-image: url('../img/bell.svg');
    background-size: 22px auto;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .3s ease;
    -webkit-transition: all.3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
/* ul.nav_login li.nav_login_remind:hover {
        background-image: url('../img/T穩x�酧g-hover.svg');
    } */

ul.nav_login li.nav_login_remind.light {
    background-image: url('../img/bell-light.svg');
}

ul.nav_login li.nav_login_list:first-of-type a.nav_login_a {
    color: #fff;
}

ul.nav_login li.nav_login_list:nth-child(3) {
    width: 260px;
    height: 40px;
    margin-top: 4px;
    font-size: 14px;
}

@media (min-width:1200px) {
    #logo {
        margin-left: 66px;
    }

    ul.nav_login {
        margin-right: 66px;
    }
}

@media (max-width:1000px) {
    nav {
        height: 54px;
    }

    .nav_burger {
        display: block;
        position: absolute;
        left: 0;
        z-index: 2;
    }

    #logo {
        width: auto;
        height: 40px;
        width: calc( 100% - 134px);
        text-align: center;
        margin: auto;
        margin-top: 7px;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
    }

    #logo img {
        width: auto;
        height: 100%;
    }

    ul.nav_menu {
        display: none;
    }

    ul.nav_login {
        height: 50px;
        margin-right: 10px;
        position: absolute;
        z-index: 2;
        right: 0;
        float: none;
    }

    li.nav_login_list {
        margin-top: 6px;
        padding: 10px 5px;
    }

    ul.nav_login li.nav_login_photo {
        margin-top: 2px;
        width: 55px;
        display: none;
    }

    ul.nav_login li.nav_login_photo .nav_login_photo_img {
        width: 36px;
        height: 36px;
        margin-top: 5px;
    }

    ul.nav_login li.nav_login_photo .nav_login_photo_img:before {
        width: 36px;
        height: 36px;
    }

    ul.nav_login li.nav_login_photo .nav_login_photo_arrow {
        height: 44px;
    }

    ul.nav_login li.nav_login_remind {
        margin-top: 16px;
    }

    ul.nav_login li.nav_login_list:nth-child(2) {
        margin-left: 30px;
    }

    ul.nav_login li.nav_login_list:nth-child(3) {
        display: none;
        height: 44px;
        margin-top: 5px;
        padding: 0;
    }
}

@media (max-width:640px) {
    ul.nav_login li.nav_login_list:nth-child(3) {
        display: none;
    }
}

.guide_area {
    height: 68px;
    float: right;
    padding: 0 10px;
    position: relative;
}

@media screen and (max-width: 1000px) {
    .guide_area {
        display: none;
    }
}

.guide_area .play_btn {
    background-color: #f00;
    border-radius: 3px;
    padding: 0 10px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    position: relative;
    top: 50%;
    margin-top: -15px;
}

.guide_area .play_btn span {
    font-size: 12px;
    display: none;
    vertical-align: bottom;
}

.guide_area.right .play_btn {
    background: none;
    color: #8f8f8f;
}
.guide_area.right .play_btn span {
    font-size: 18px;
}

.guide_area .text span {
    color: red;
    line-height: 68px;
}

@media screen and (min-width: 1200px) {
    .guide_area .play_btn span {
        display: inline-block;
    }
}

.guide_area .video_box {
    display: none;
    width: 130px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 3px;
    padding: 7px 10px 10px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}

.guide_area .video_box:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid rgba(0,0,0,0.5);
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -5px;
}

.guide_area .video_box a.video_guide_title {
    display: block;
    font-size: 14px;
    color: #ffc655;
}

.guide_area .video_box a.video_guide_title:hover {
    color: #fa0;
}

.guide_area .video_box a.video_guide_link {
    display: block;
    font-size: 12px;
    color: #fff;
}

.guide_area:hover .video_box {
    display: block;
    top: 60px;
}

.guide_area .video_box a.video_guide_link:hover {
    color: #fa0;
}

/* Burger Menu Start */
#hamburger-button {
    position: relative;
    z-index: 9999;
    /*so it never gets lost under something*/
    display: inline-block;
    vertical-align: top;
    height: 18px;
    width: 22px;
    margin: 18px 20px 18px 20px;
}

#hamburger-button:hover {
    cursor: pointer;
    /* changes the cursor to pointer */
}

#hamburger-button > span {
    display: block;
    height: 4px;
    margin-bottom: 4px;
    width: 22px;
    background-color: #fff;
    -webkit-transition-timing-function: linear;
    /* Safari and Chrome */
    transition-timing-function: linear;
    transition-duration: .3s;
}


#hamburger-button.open > span:first-child {
    -webkit-transform: translateY(6px) rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: translateY(6px) rotate(45deg);
}


#hamburger-button.open > span:nth-child(2) {
    -webkit-transform: rotateY(90deg);
    /* Safari */
    transform: rotateY(90deg);
    /* rotates the second child on the Y AXIS ONLY 90 degrees so it disappears into a point */
}

#hamburger-button.open > span:last-child {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    /* Chrome, Safari, Opera */
    transform: translateY(-10px) rotate(-45deg);
}


.navbar {
    position: absolute;
    opacity: 1;
    display: block;
    z-index: 888;
    /*so its above the content but below the burger button*/
    height: calc( 100vh - 54px);
    margin-top: 54px;
    overflow: scroll;
    width: 78vw;
    left: -78vw;
    transition: .3s;
    background-color: #fff;
    color: #178287;
}

.navbar.open {
    left: 0;
}

.navbar > ul {
    list-style: none;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 60px;
    font-size: 18px;
    font-weight: bold;
    line-height: 37px;
}

.navbar > ul > li {
    border-bottom: 1px solid #0091cb;
    margin-bottom: 10px;
    padding: 5px;
    text-align: left;
}

.navbar > ul > li > a {
    display: block;
    position: relative;
}

.navbar > ul > li > a.member,
.navbar > ul > li > a.guide,
.navbar > ul > li > a.guidepdf,
.navbar > ul > li > a.event,
.navbar > ul > li > a.logout {
    padding-left: 24px;
}

.navbar > ul > li > a.member:before {
    content: '\F007';
    display: block;
    font-family: FontAwesome;
    color: #333;
    position: absolute;
    top: 0;
    left: 0;
}

.navbar > ul > li > a.guidepdf:before {
    content: '\F15C';
    display: block;
    font-family: FontAwesome;
    color: #fa0;
    position: absolute;
    top: 0;
    left: 0;
}

.navbar > ul > li > a.guide:before {
    content: '\F16A';
    display: block;
    font-family: FontAwesome;
    color: #ff3d3d;
    position: absolute;
    top: 0;
    left: 0;
}

.navbar > ul > li > a.logout:before {
    content: '\F08B';
    display: block;
    font-family: FontAwesome;
    color: #333;
    position: absolute;
    top: 0;
    left: 0;
}

.navbar > ul > li > a.event:before,
.navbar > ul > li > a.event:after {
    display: block;
    font-family: FontAwesome;
    color: #fa0;
    position: absolute;
    top: 1px;    
}
.navbar > ul > li > a.event:before {
    content: '\F005';
    left: 0;
}
.navbar > ul > li > a.event:after {
    content: '\F006';
    left: 120px;
}

/*20220216*/
a.sidebar-sub-menu {
    padding-right: 50px;
}
a.sidebar-sub-menu::before {
    content: '\f067';
    display: block;
    width: 20px;
    height: 20px;
    line-height: 21px;
    color: #fff;
    font-size: 14px;
    font-family: FontAwesome;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #ffd24a;
    background-color: #ffd24a;
    position: absolute;
    top: 5px;
    right: 5px;
    transform: rotate(360deg);
    transition: .3s ease-in-out;
}
a.sidebar-sub-menu.open::before {
    transform: rotate(45deg);
}
ul.sidebar-sub-menu-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 10px 1em;
}
ul.sidebar-sub-menu-list > li > a {
    display: block;
    font-size: 16px;
    color: #333;
}
/*20220216*/

/* Burger Menu End */
/**/

.box {
    width: 130px;
    background-color: #fff;
    position: relative;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin: 20px 10px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.box.arrow-top-center:after {
    border-bottom-color: #fff;
}

.box.arrow-top-center:after {
    border-top-width: 0;
    border-bottom-width: 10px;
}

.box.arrow-top-center:after {
    border-top-color: transparent;
    border-bottom-color: #ccc;
    top: -10px;
    bottom: auto;
}

.box:after {
    content: "";
    display: block;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #ccc transparent transparent;
    margin-left: -10px;
    position: absolute;
    bottom: -10px;
    left: 50%;
}

#list_personal {
    position: fixed;
    z-index: 999999;
    right: 0px;
    top: 68px;
    background-color: #fff;
    display: none;
}

#list_personal.open {
    display: block;
}

#list_personal ul {
    padding-top: 5px;
    padding-bottom: 10px;
}

#list_personal ul li {
    color: #333;
    font-size: 18px;
    border-top: 1px solid rgba(0, 0, 0, .12);
    margin-top: 10px;
}

#list_personal ul li:first-child {
    margin-top: 0px;
    border-top: none;
}

#list_personal ul li a {
    display: block;
    color: #4d4d4d;
    padding-top: 10px;
    padding-left: 16px;
    text-align: left;
}

#list_personal ul li a span {
    display: inline-block;
    padding-left: 24px;
    position: relative;
}

#list_personal ul li a span:before {
    content: '\F007';
    display: block;
    font-family: FontAwesome;
    color: #333;
    position: absolute;
    top: 0;
    left: 0;
}

#list_personal ul li a span.logout:before {
    content: '\F08B';
}

@media (min-width:900px) and (max-width:1059px) {
    .box {
        margin: 10px 0px;
    }
}
/**/

#list_remind {
    width: 300px;
    height: 235px;
    background-color: #fff;
    position: fixed;
    z-index: 999999;
    border: 1px solid #ccc;
    border-radius: 6px;
    right: 125px;
    top: 76px;
    margin: auto;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    display: none;
}

#list_remind.open {
    display: block;
}

#list_remind .top_box {
    width: calc( 100% - 1em);
    text-align: right;
    line-height: 20px;
    padding-right: 1em;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

#list_remind .scrollbox {
    width: 100%;
    height: 200px;
    overflow: auto;
    z-index: 2;
    position: absolute;
    top: 30px;
    left: 0;
}

#list_remind .scrollbox li {
    border-bottom: 1px solid #ccc;
    width: calc( 100% - 1em);
    padding: 5px .5em;
    cursor: pointer;
}

#list_remind .scrollbox li.list_remind_news {
    background-color: rgba(249, 185, 2, .3);
    font-weight: bold;
}

.icon_news {
    width: 20px;
    height: 10px;
    margin-right: 10px;
    background-image: url('../img/new.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px auto;
    display: inline-block;
}

#list_remind .null_box {
    width: 100%;
    height: 5px;
    border-top: 1px solid #ccc;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
}

@media (min-width:900px) and (max-width:1059px) {
    #list_remind {
        right: 75px;
    }
}

@media (max-width:899px) {
    #list_remind {
        right: 0px;
    }
}
/* Learning Result Start */

#LearningResult {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .6);
    z-index: 20;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

#LearningResult .close {
    border-radius: 3px;
    border: 1px solid #FFF;
    width: 120px;
    height: 30px;
    color: #FFF;
    line-height: 30px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    /*bottom: 15vh;*/
    margin: auto;
    cursor: pointer;
    transition: all .3s ease;
    -webkit-transition: all.3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

#LearningResult .close:hover {
    background-color: rgba(0,0,0,.8);
}

#LearningResult .close2 {
    display: none;
}

#LR_main {
    position: relative;
    max-width: 920px;
    width: 87vw;
    height: auto;
    background-color: #F2F2F2;
    border: 1px solid #D6D6D6;
    border-radius: 3px;
    left: 0;
    right: 0;
    margin: auto;
    padding-bottom: 20px;
    -webkit-box-shadow: 2px 4px 15px rgba(0, 0, 0, .4);
    -moz-box-shadow: 2px 4px 15px rgba(0, 0, 0, .4);
    box-shadow: 2px 4px 15px rgba(0, 0, 0, .4);
}

#LR_main:before {
    content: "";
    width: 150px;
    height: 32px;
    line-height: 30px;
    position: absolute;
    background-color: transparent;
    top: -31px;
    right: -1px;
    border: 1px solid #D6D6D6;
    border-radius: 3px;
    border-bottom: 0;
    -webkit-box-shadow: 2px 4px 15px rgba(0, 0, 0, .4);
    -moz-box-shadow: 2px 4px 15px rgba(0, 0, 0, .4);
    box-shadow: 2px 4px 15px rgba(0, 0, 0, .4);
    z-index: 21;
}

#LR_main_level {
    position: absolute;
    top: -30px;
    right: -1px;
    z-index: 22;
    width: 150px;
    height: 50px;
    border-right: 1px solid #D6D6D6;
    border-radius: 3px;
    background-color: #F2F2F2;
    line-height: 50px;
    text-align: center;
    font-weight: 500;
    color: #0091CB;
    cursor: default;
}

#LR_main_text {
    width: calc( 100% - 40px);
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
    font-size: 18px;
    line-height: 1.4em;
    color: #4D4D4D;
    cursor: default;
}

.HorizontalLine {
    width: 87%;
    height: 0;
    border-bottom: 1px solid #D6D6D6;
    margin: 30px auto;
}

#LR_main_notice {
    width: 100%;
    height: auto;
    margin: auto;
}

#LR_main_notice li.list {
    width: calc( ( 100% - 42px) / 3);
    height: 200px;
    float: left;
    /*background-color: rgba( 0, 0, 0, .8);*/
    text-align: center;
    position: relative;
}

#LR_main_notice li.list #times {
    width: 180px;
    height: 180px;
    background-color: #D6D6D6;
    border-radius: 999rem;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    overflow: hidden;
    margin: 10px auto;
}

#LR_main_notice li.list1 {
    margin-left: 9px;
}

#LR_main_notice li.list3 {
    margin-right: 9px;
}

.Straight_Line {
    width: 0;
    height: 100px;
    border-right: 1px solid #D6D6D6;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: calc( ( 200px - 100px) /2);
    float: left;
}


#bar {
    position: relative;
    width: calc( 100% - 20px);
    height: 48px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: auto;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

#bar .bar-info {
    border-radius: 5px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 8px;
    padding-bottom: 8px;
    background: #fd7473;
    width: 0rem;
    font-size: 18px;
    position: relative;
    height: 32px;
    transition: width 3.3s ease-in-out;
    overflow-y: hidden;
}

#bar .bar-info .percent {
    float: right;
    font-weight: 600;
    font-size: 32px;
    opacity: 0;
    color: #FFF;
    cursor: default;
}

#bar .bar-info.schedule_bar {
    background: linear-gradient(to left, #04A5C1 0%, #F9F981 100%);
    max-width: calc( 100% - 15rem - 10px);
    font-size: 18px;
    padding-left: 15rem;
    position: relative;
    overflow-x: hidden;
}

#bar .bar-info.schedule_bar:before {
    position: absolute;
    display: block;
    content: "";
    width: 13rem;
    height: 100%;
    top: 0;
    left: 0.75rem;
    color: rgba(0, 0, 0, .6);
    font-weight: 600;
    font-size: 18px;
    line-height: 48px;
    z-index: 2;
}

#bar .bar-info.schedule_bar:after {
    position: absolute;
    display: block;
    content: "";
    width: 22%;
    height: 100%;
    left: -5px;
    top: 0;
    z-index: 1;
    background: -moz-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 98%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, right top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(98%, rgba(255, 255, 255, 0.6)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 98%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 98%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 98%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 98%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
}

.ProgressBar,
.ProgressBar-contentCircle {
    display: block;
    cursor: pointer;
    width: 200px;
    height: 200px;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.ProgressBar:hover .ProgressBar-ValueBubbles {
    opacity: 1;
}

.ProgressBar-ValueBubbles {
    background-image: -webkit-linear-gradient(top, #fdfdfd, #f3f3f4);
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
    padding: 10px 10px;
    background: #58BDDC;
    color: #FFF;
    top: -55px;
    left: 5rem;
    float: right;
    z-index: 1;
    opacity: 0;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
}

.ProgressBar-ValueBubbles:before {
    content: "";
    position: absolute;
    top: 80%;
    left: 3%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 20px 0 0;
    border-color: #58bddc transparent transparent transparent;
    line-height: 0px;
    _border-color: #58bddc #000000 #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

.ProgressBar-circle,
.ProgressBar-background {
    fill: none;
    stroke: #58BDDC;
    stroke-width: 9;
    stroke-linecap: round;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    position: relative;
    z-index: 10;
    -moz-box-shadow: 1px 1px 3px 2px rgba(20%, 20%, 40%, 0.5) inset;
    -webkit-box-shadow: 1px 1px 3px 2px rgba(20%, 20%, 40%, 0.5) inset;
    box-shadow: 1px 1px 3px 2px rgba(20%, 20%, 40%, 0.5) inset;
}

.ProgressBar-background {
    stroke: #D6D6D6;
    stroke-width: 6;
    z-index: 0;
    -moz-box-shadow: 1px 1px 3px 2px rgba(20%, 20%, 40%, 0.5) inset;
    -webkit-box-shadow: 1px 1px 3px 2px rgba(20%, 20%, 40%, 0.5) inset;
    box-shadow: 1px 1px 3px 2px rgba(20%, 20%, 40%, 0.5) inset;
}

.ProgressBar-percentage {
    color: #389ba6;
    text-align: center;
    width: 180px;
    height: 180px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #F2F2F2;
    border-radius: 999rem;
    -moz-box-shadow: 4px 4px 12px -2px rgba(20%, 20%, 40%, 0.5);
    -webkit-box-shadow: 4px 4px 12px -2px rgba(20%, 20%, 40%, 0.5);
    box-shadow: 4px 4px 12px -2px rgba(20%, 20%, 40%, 0.5);
}

.ProgressBar--text {
    font-size: 16px;
    line-height: 1.6em;
    color: #4D4D4D;
    font-weight: 500;
    width: 100%;
    height: auto;
    display: block;
    margin-top: 25%;
}

.ProgressBar--text p span.today {
    font-size: 26px;
    color: #58BDDC;
    font-weight: 600;
}

@media (min-width: 768px) and (max-width:899px) {
    #LR_main {
        max-width: 640px;
    }

    .ProgressBar-ValueBubbles {
        top: -50px;
        left: 4.6rem;
    }
}

@media (max-width:767px) {
    #LearningResult {
        overflow-y: auto;
        overflow-x: hidden;
        height: 70vh;
        padding-top: 15vh;
        padding-bottom: 15vh;
    }

    #LearningResult .close {
        top: 8vh;
        bottom: auto;
        left: auto;
        right: auto;
    }

    #LearningResult .close2 {
        display: block;
        position: relative;
        top: 5vh;
        margin-bottom: 5vh;
    }

    #LR_main {
        max-width: 100vw;
        width: 98%;
    }

    #LR_main_notice li.list {
        width: 100%;
    }

    .Straight_Line {
        width: 100%;
        height: 0;
        margin: 8px 0;
        border: none;
    }

    .ProgressBar,
    .ProgressBar-contentCircle {
        cursor: default;
    }

    .ProgressBar-ValueBubbles {
        display: none;
    }
}
/* Learning Result End */

.text-danger ul, .text-danger li {
    padding: 0 !important;
    margin: 0 !important;
}

div.loading-bar {
    display: none;
}

div.loading-bar:before {
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.5;
    filter: alpha(opacity=50);
    z-index: 2147483646;
}

div.loading-bar:after {
    content: '';
    width: 50px;
    height: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    color: white;
    animation: loading 1s infinite ease alternate;
    border-radius: 50%;
    border: 5px dashed #fff;
    z-index: 2147483647;
}

div.loading-bar::after(2) {
    content: '';
    width: 50px;
    height: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    color: white;
    animation: loading 1s infinite ease alternate;
    border-radius: 50%;
    border: 5px dashed #fff;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

footer {
    border-top: 5px solid #F0CD30;
    background-color: #fff;
    padding: 10px 0 15px;
    position: relative;
    z-index: 10;
}
footer .copyright {
    text-align: center;
    width: 100%;
    font-size: 12px;
    color: #575757;
    margin-top: 10px;
}
footer .copyright a {
    color: #0080B3;
    text-decoration: underline;
}


/* float Ads 20220729 */
.float-hope {
    font-size: 0;
    position: fixed;
    bottom: 50px;
    right: 10px;
    z-index: 999;
}
.float-hope-btn {
    display: block;
    width: 90px;
    height: 90px;
}
.remove-hope {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(247, 111, 111, 0.6);
    position: absolute;
    top: -12px;
    right: 0;
}
.remove-hope::before,.remove-hope::after {
    content: '';
    display: block;
    width: 12px;
    height: 1px;
    background-color: #fff;
    transform-origin: center;
    position: absolute;
    top: 10px;left: 4px;
}
.remove-hope::before {
    transform: rotate(45deg);
}
.remove-hope::after {
    transform: rotate(-45deg);
}
@media screen and (min-width: 768px){
    .float-hope {
        bottom: 8%;
        right: 25px;
    }
    .float-hope-btn {
        width: 180px;
        height: 180px;
    }
}
/* float Ads End */