.course-list .form-group {
    padding: 3rem 2rem 4rem;
    margin-bottom: 0;
    border-bottom: 10px solid #f7f7f7;
}

.course-list .form-group.last {
    border-bottom: 0;
    padding-bottom: 5rem;
}

.course-list .form-group .choice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;;
}

.course-list .form-group .choice-list .sbj {
    height: 36px;
    border:1px dashed #088767;
    color: #088767;
    font-weight: 600;
    padding: 0 0 0 14px;
    display: inline-block;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
}

.course-list .form-group .choice-list .sbj .delete {
    width: 36px;
    height: 36px;
    background: url(../../images/www/common/icon_delete.svg) no-repeat center;
}

.course-list .radio-box {
    justify-content: flex-start;
    gap: 20px;
}

.radio-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.radio-box .form-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.radio-box .form-item label {
    width: 68px;
    height: 68px;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    padding-top: 66px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
}

.radio-box .form-item label.degree {
    background-image: url("../../images/www/common/icon_degree.svg");
}
.radio-box .form-item label.certificate {
    background-image: url("../../images/www/common/icon_certificate.svg");
}
.radio-box .form-item label.cpa {
    background-image: url("../../images/www/common/icon_cpa.svg");
}
.radio-box .form-item label.aicpa {
    background-image: url("../../images/www/common/icon_aicpa.svg");
}

.radio-box .form-item .item-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}

.radio-box .form-item .item-label {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.radio-box .form-item .item-label span {
    margin-top: 5px;
    display: block;
}

.form-item .item-input:checked~ .item-label {
    background-color: #F4FFFC;
    border-color: #088767;
}

.textarea-box {
    margin-bottom: 15px;
}

.search-box:not(:last-of-type) {
    margin-bottom: 2rem;
}

.search-box .cate {
    font-size: 1.4rem;
    font-weight: 500;
}


/* 학습 설계 완료 */
.complete-box {
    margin: 40px 0;
    padding: 50px 0;
    border-radius: 20px;
    background: #F4FFFC;
    text-align: center;
    letter-spacing: -0.1rem;
}

.complete-box .complete-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.complete-box .complete-title strong {
    color: #088767;
    margin-top: 10px;
    display: block;
}

.complete-box .complete-desc {
    font-size: 1.6rem;
    line-height: 2.2rem;
    color: #5d636a;
}

.complete-box .complete-image {
    max-width: 131px;
    margin: 24px auto;
}

.complete-box .complete-image img {
    width: 100%;
}

.complete-box .complete-manager {
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 600;
}

/* 학습 설계 확인 리스트 */
.confirm-list {
    
}

.confirm-list .list-item:not(:last-child) {
    border-bottom: 2px solid #f7f7f7;
}

.confirm-list .item-head {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.confirm-list .item-head .left, .confirm-list .item-head .right {
    display: flex;
    align-items: center;
}

.confirm-list .item-head .state {
    border: 1px solid #000;
    background: #fff;
    padding: 0 12px;
    height: 36px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 600;
    margin-right: 10px;
}

.confirm-list .item-head .state.doing {
    border-color: #36db5e;
    background-color: #f2fff5;
    color: #36db5e;
}

.confirm-list .item-head .state.hold {
    border-color: #be2323;
    background-color: #fff3f3;
    color: #be2323;
}

.confirm-list .item-head .state.complete {
    border-color: #0019b2;
    background-color: #0019b2;
    color: #fff;
}

.confirm-list .item-head .course-design {
    font-size: 1.8rem;
    font-weight: 600;
}

.confirm-list .item-head .date {
    color: #5d636a;
}

.confirm-list .item-head .arrow {
    width: 36px;
    height: 36px;
    background: url("../../images/www/common/icon_down_arrow_large.svg") no-repeat center;
    margin-left: 10px;
}

.confirm-list .item-content {
    padding: 3rem 2rem;
    background: #f7f7f7;
    display: none;
}

.confirm-list .has-down.open .arrow {
    transform: rotate(180deg);
}

.confirm-list .has-down.open ~ .item-content {
    display: block;
}

.confirm-list .item-content .title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 7px;
}

.confirm-list .item-content .text {
    line-height: 2.2rem;
    color: #666;
}

.confirm-list .item-content .reply {
    padding: 10px 0 0 12px;
    color: #666;
}

.confirm-list .item-content .reply::before {
    content: "";
    width: 11px;
    height: 11px;
    border-left: 1px solid #666;
    border-bottom: 1px solid #666;
    display: inline-block;
    transform: translate(-2px, -4px);
}

.confirm-list .item-content .reply .reply-delete {
    color: #be2323;
    font-weight: 600;
    padding: 5px;
}

.confirm-list .item-content .answer {
    margin-top: 25px;
}

.confirm-list .item-content .btns {
    display: flex;
    margin-top: 25px;
}

.confirm-list .item-content .btns .like {
    width: 55%;
    margin-right: 4%;
}

.confirm-list .item-content .btns .survey {
    width: 41%;
}

.confirm-list .item-content .btns button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    padding: 6px 0;
}

.confirm-list .item-content .btns button i {
    line-height: 0;
    margin-right: 4px;
    font-style: normal;
}

.confirm-list .item-content .btns button i.heart {
    color: #bababa;
    font-size: 1.6rem;
}

.confirm-list .item-content .btns button i.heart.on {
    color: #ff0000;
}

.confirm-list .item-content .btns button i.document {
    width: 24px;
}

#satisfaction .select-box .input-direct {
    display: none;
}

.confirm-view {
    padding-bottom: 50px;
}

.confirm-view .view-group {
    padding: 3rem 2rem 4rem;
    margin-bottom: 0;
    border-bottom: 10px solid #f7f7f7;
}

.confirm-view .view-group:last-child {
    border-bottom: 0;
    padding-bottom: 5rem;
}

.confirm-view .view-group:first-child,
.confirm-view .view-group:last-child {
    padding-top: 5rem;
}

.confirm-view .view-group .degree-info {
    padding: 3rem 3rem 3.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 4px 5px 16px 2px rgba(0, 0, 0, 0.1);
    border: solid 1px #ced5de;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.confirm-view .view-group .degree-info::before {
    content: "";
    position: absolute;
    width: calc(100% + 5rem);
    height: 46.12%;
    background: #088767;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.degree-info .info-box {
    display: flex;
}

.degree-info .info-box span {
    flex: 1;
    font-size: 1.6rem;
    line-height: 2.2rem;
}

.degree-info .info-box .tit {
    flex: 1;
}

.degree-info .info-box .txt {
    flex: 1.2;
    font-weight: 600;
}

.confirm-view .view-group .degree-notice {
    margin-top: 40px;
}

.confirm-view .view-group .degree-notice p {
    color: #bc1c1c;
    display: flex;
    font-size: 1.4rem;
    line-height: 1.8rem;
}

.confirm-view .view-group .degree-notice p:not(:last-child) {
    margin-bottom: 5px;
}

.confirm-view .view-group .degree-notice p::before {
    content: "※";
    margin-right: 0.2rem;
}

.confirm-view .view-group .title {
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: -1px;
    color: #222;
    margin-bottom: 20px;
}

.confirm-view .view-group .view-table {
    width: 100%;
    overflow-x: auto;
}

.confirm-view .table-korea .subject-t01 {
    font-size: 10px;
    font-weight: 400;
    border: 1px solid #222;
    background: #fff;
    border-radius: 13px;
    padding: 0 8px;
    margin-bottom: 2px;
    display: inline-block;
}

.confirm-view .table-korea .subject-t02 {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
}

.confirm-view .view-group .table01 table {
    min-width: 520px;
}

.confirm-view .view-group .table02 table {
    min-width: 640px;
}

.confirm-view .view-group .manage-commit {
    border: 1px solid #eaecef;
    padding: 1.5rem 1.5rem 3rem;
    font-size: 1.4rem;
    line-height: 2.6rem;
    letter-spacing: -0.5px;
}

.confirm-view .view-group .btns {
    display: flex;
    margin-top: 25px;
}

.confirm-view .view-group .btns .like {
    width: 55%;
    margin-right: 4%;
}

.confirm-view .view-group .btns .survey {
    width: 41%;
}

.confirm-view .view-group .btns button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    padding: 6px 0;
}

.confirm-view .view-group .btns button i {
    line-height: 0;
    margin-right: 4px;
    font-style: normal;
}

.confirm-view .view-group .btns button i.heart {
    color: #bababa;
    font-size: 1.6rem;
}

.confirm-view .view-group .btns button i.heart.on {
    color: #ff0000;
}

.confirm-view .view-group .btns button i.document {
    width: 24px;
}

/* 과목선택 영역 */
.confirm-view .check-group {
    padding: 3rem 0 4rem;
}

.confirm-view .check-group .btn-wrap {
    text-align: right;
}

.confirm-view .check-group .all-check {
    height: 29px;
    border: 1px solid #000;
    padding: 0 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.2rem;
}

.confirm-view .check-group .subject-list {
    margin-top: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.subject-list .list-item.open .arrow {
    transform: rotate(-180deg);
}

.subject-list .list-item.open .item-content {
    display: block;
}

.subject-list .item-head {
    width: 100%;
    height: 56px;
    background: #fafafa;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.subject-list .item-head .period {
    font-size: 1.6rem;
    font-weight: 600;
}

.subject-list .item-head .period strong {
    color: #088767 ;
}

.subject-list .item-head .arrow {
    width: 36px;
    height: 36px;
    background: url("../../images/www/common/icon_down_arrow_large.svg") no-repeat center;
    margin-left: 10px;
}

.subject-list .item-content {
    border-top: 1px solid #e0e0e0;
    display: none;
}

.subject-list .item-content ul li {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subject-list .item-content ul li:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.subject-list .item-content ul li .left {
    flex: 1.3;
    display: flex;
    align-items: center;
}

.subject-list .item-content ul li .left .subject-tit {
    flex: 1;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    line-height: 2rem;
    display: flex;
    gap: 7px;
    align-items: center;
}

.subject-list .item-content ul li .left .subject-tit .end {
    min-width: 45px;
    height: 22px;
    border: 1px solid #be2323;
    color: #be2323;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 11px;
    text-align: center;
    padding: 0 10px;
    background: #fff3f3;
}

.subject-list .item-content ul li .right {
    flex: 1;
    display: flex;
    justify-content: right;
    gap: 7px;
    font-size: 1.6rem;
    align-items: center;
}

.subject-list .item-content ul li .right del {
    color: #767676;
    font-size: 1.4rem;
}

.apply-search {
    padding: 5px 60px 15px 20px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.apply-search .custom-select {
    height: 36px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 18px;
    background: #fff url("../../images/www/common/icon_arrow_sm.svg") no-repeat calc(100% - 14px) center;
    padding-right: 30px;
}

.apply-search-list {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.apply-search-list::-webkit-scrollbar {
    display: none;
}

.apply-search ul li {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

.apply-search ul li:not(:last-child) {
    margin-right: 5px;
}

.apply-search ul li:nth-child(1){
    width: 20.9rem !important;
}
.apply-search ul li:nth-child(2){
    width: 9.6rem !important;
}
.apply-search ul li:nth-child(3){
    width: 12rem !important;
}

.apply-search .filter-btn {
    position: absolute;
    top: 5px;
    right: 20px;
}

.apply-list {
    padding: 20px 20px 125px;
}

.apply-list .apply-item {
    padding: 20px 15px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.apply-list .apply-item.active {
    border-color: #0da486;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .2);

}

.apply-list .apply-item.end::after {
    content: "마감";
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1;
}

.apply-list .apply-item:not(:last-of-type) {
    margin-bottom: 10px;
}

.apply-checkbox {
    padding-left: 35px;
}

.apply-checkbox.custom-radio {
    margin-bottom: 20px;
}

.apply-checkbox.custom-radio .custom-control-label {
    padding-right: 35px;
}

.apply-checkbox .custom-control-label {
    display: block;
    font-size: 1.5rem;
    line-height: 22px;
    font-weight: 500;
    word-wrap: break-word;
    word-break: keep-all;
}

.apply-checkbox .custom-control-input,
.apply-checkbox .custom-control-input ~ .custom-control-label::before, 
.apply-checkbox .custom-control-input ~ .custom-control-label::after {
    width: 25px;
    height: 25px;
    background-size: auto;
}

.apply-checkbox .custom-control-input ~ .custom-control-label::after {
    background-image: url('../../images/www/common/apply_check.svg');
    border: 0;
}

.apply-checkbox .custom-control-input:checked ~.custom-control-label::after {
    background-image: url('../../images/www/common/apply_checked.svg');
    background-color: unset;
    border: 0;
}

.apply-checkbox .custom-control-input:disabled ~.custom-control-label::after {
    background-image: url('../../images/www/common/apply_check_disabled.svg');
    background-color: unset;
    border: 0;

}

.apply-list .apply-item.disabled::after {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0, 0.8);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-list .apply-item.disabled .disabled-info {
    color: #fff;
    text-align: center;
    position: absolute;
    width: 205px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: #838383;
    padding: 5px 8px;
    font-size: 13px;
}

.apply-list .apply-item .sug {
    display: inline-block;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    padding: 6px 7px;
    background-color: #0e6253;
    border-radius: 18px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.apply-list .apply-item .dada {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.2;
    color: #c32419;
    font-weight: 500;
    background-color: #fff3f3;
    border: 1px solid #c32419;
    border-radius: 3px;
    padding: 0 3px;
    letter-spacing: 0;
}

.apply-list .apply-item .deadline {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    background-color: #0019b2;
    border: 1px solid #0019b2;
    border-radius: 3px;
    padding: 0 3px;
    letter-spacing: 0;
}

.apply-list .apply-item .discount {
    font-size: 1.4rem;
    color: #767676;
}

.apply-list .apply-item .price {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -1.13px;
    margin-left: 4px;
    min-width: 80px;
}

.apply-view .view-group {
    padding: 3rem 2rem 4rem;
}

.apply-view .view-group02 {
    padding: 3rem 2rem;
    background-color: #f5f6f7;
}

.apply-view .view-group table th,
.apply-view .view-group table td {
    padding: 1rem 1.5rem;
    word-wrap: break-word;
    word-break: keep-all;
    position: relative;
}

.apply-view .view-group table th {
    font-weight: 500;
}

.apply-view .view-group table .discount {
    position: relative;
    margin-right: 20px;
}

.apply-view .view-group table .discount::before {
    content: '';
    width: 72px;
    height: 6px;
    background: url('../../images/www/common/icon_discount.png') no-repeat;
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
}

.apply-view .view-group table .percent {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    background-color: #c32419;
    border-radius: 3px;
    padding: 0 5px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.apply-view h3 {
    font-size: 1.6rem;
    letter-spacing: -1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.package-list .package-item {
    background-color: #fff;
    padding: 0 20px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}

.package-list .package-item:not(:last-of-type) {
    margin-bottom: 10px;
}

.package-list .item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
}

.package-list .item-head .title {
    font-weight: 600;
}

.package-list .item-head .arrow {
    width: 36px;
    height: 36px;
    background: url('../../images/www/common/icon_down_arrow_blue.svg') no-repeat center;
    margin-left: 10px;
}

.package-list .has-down.open .arrow {
    transform: rotate(180deg);
}

.package-list .child-list {
    display: none;
    border-top: 1px solid #eaecef;
    padding: 13px 0 26px;
}

.package-list .has-down.open ~ .child-list {
    display: block;
}

.package-list .child-list .child {
    display: flex;
    justify-content: space-between;
}

.package-list .child-list .child:not(:last-of-type) {
    margin-bottom: 13px;
}

.package-list .child-list .child .price-wrap del {
    color: #767676;
    margin-right: 7px;
}

.package-list .child-list .child .price-wrap .price {
    font-size: 1.6rem;
    font-weight: 600;
}

.apply-view .info-txt {
    color: #999;
    margin-top: 10px;
    line-height: 18px;
}

.apply-view .btn-wrap {
    padding: 40px 20px 63px;
    display: flex;
    flex-wrap: wrap;
}

.apply-view .btn-wrap .btn {
    width: 50%;
    font-size: 1.6rem;
    border-radius: 0;
    font-weight: 500;
}

.apply-view .btn-wrap .btn-gray {
    background-color: #b9bec4;
    border-color: #b9bec4;
}

.apply-view .video-wrap {
    width: 100%;
    margin-bottom: 25px;
    background-color: #000;
}

.apply-view .video-wrap video {
    width: 100%;
}

/* .bottom-sheet .form-group {
    padding: 2rem;
    margin-bottom: 0;
    border-bottom: 10px solid #f7f7f7;
} */

.bottom-sheet .form-group:last-of-type {
    border-bottom: 0;
}

.bottom-sheet .form-group .tit {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.bottom-sheet .date-list .item {
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    padding: 13px;
}

.bottom-sheet .date-list .item:not(:last-of-type) {
    margin-bottom: 10px;
}

.bottom-sheet .date-list .item.active {
    border: 1px solid #088767;
}

.bottom-sheet .package-list {
    display: flex;
}

.bottom-sheet .package-list .custom-control {
    width: 50%;
}

.bottom-sheet .package-list .custom-control.custom-radio label {
    height: 45px;
    line-height: 42px;
    border-radius: 3px;
    color: #222;
}

.bottom-sheet .input-select-list .custom-control.custom-radio input:not(:checked) ~ .custom-control-label {
    font-weight: 400;
}

.bottom-sheet .input-select-list.child-list {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed #979797;
}

.tap-cont-wrap:not(:last-of-type) {
    margin-bottom: 40px;
}

.tap-cont-wrap .title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.num-list {
    list-style: decimal;
}

.num-list li {
    font-size: 1.4rem;
    color: #666;
    margin-left: 15px;
    line-height: 22px;
    word-wrap: break-word;
    word-break: keep-all;
}

.plan-wrap:not(:last-of-type) {
    margin-bottom: 10px;
}

.plan-wrap .plan-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
    background-color: #3751db;
    border-radius: 5px;
}

.plan-wrap .plan-head span {
    font-weight: 600;
    color: #fff;
}

.plan-wrap .plan-head .weeks {
    margin-right: 20px;
}

.plan-wrap .plan-cont {
    border: 1px solid #eaecef;
    border-radius: 5px;
    padding: 0 20px;
}

.plan-wrap .plan-cont .plan-item {
    padding: 30px 10px 30px 30px;
    color: #666;
    line-height: 18px;
    word-wrap: break-word;
    word-break: keep-all;
}

.plan-wrap .plan-cont .plan-item:not(:last-of-type){
    border-bottom: 1px solid #eaecef;
}

.plan-wrap .plan-item .txt-wrap {
    position: relative;
}

.plan-wrap .plan-item .txt-wrap:not(:last-of-type) {
    margin-bottom: 10px;
}

.plan-wrap .plan-item .num {
    width: 20px;
    height: 20px;
    line-height: 19px;
    color: #fff;
    font-weight: 600;
    background-color: #3751db;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: -3px;
    left: -30px;
}

.plan-wrap .plan-item .title,
.plan-wrap .plan-item .sub-tit {
    color: #222;
}

.plan-wrap .plan-item .title {
    font-weight: 600;
    margin-right: 15px;
}
.plan-wrap .plan-item .time {
    font-size: 1.2rem;
}

.plan-wrap .plan-item .sub-tit {
    min-width: 52px;
    font-weight: 500;
}

.plan-wrap .plan-item .sub-txt {
    margin-left: 31px;
}

.plan-wrap .plan-item .txt-list {
    margin-top: 7px;
}

.plan-wrap .plan-item .txt-list li {
    line-height: 22px;
}