@charset "UTF-8";

/* alert 팝업 */
.common_alert_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.common_alert_bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.4);
}

#thumbnails {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.common_alert_box {
    position: absolute;
    width: calc(100% - 100px);
    max-width: 220px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 99px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 50px;
    background-color: #FFFFFF;
    border-radius: 10px;
}

p.common_alert_txt {
    font-size: 20px;
    line-height: 29px;
    font-weight: 500;
    color: #191919;
    text-align: center;
    margin: 0 auto;
}

p.common_alert_txt2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #191919;
    text-align: center;
    margin: 14px auto 44px auto;
}

.common_alert_ok {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 54px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #2BA9BC;
    margin: 0 auto;
    border-radius: 40px;
}

.common_alert_ok:hover {
    background-color: #136567;
}


/* 스탠바이 팝업 */
.common_stanby_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.common_stanby_bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.5);
}

.common_stanby_box {
    position: absolute;
    width: calc(100% - 100px);
    max-width: 220px;
    height: auto;
    padding: 50px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

p.common_stanby_txt {
    font-size: 20px;
    line-height: 29px;
    font-weight: 500;
    color: #191919;
    text-align: center;
    margin: 0 auto;
}

p.common_stanby_txt2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #191919;
    text-align: center;
    margin: 14px auto 44px auto;
}

.loading_icon {
    position: relative;
    min-width: 40px;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.loading_icon span {
    position: absolute;
    display: block;
    width: 4px;
    height: 12px;
    border-radius: 6px;
    background-color: #fff;
    animation: loader 8s infinite;
}

.loading_icon span:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.loading_icon span:nth-child(2) {
    top: 3px;
    right: 6px;
    transform: rotate(45deg);
    animation-delay: 1s;
}

.loading_icon span:nth-child(3) {
    top: 50%;
    right: 2px;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 2s;
}

.loading_icon span:nth-child(4) {
    bottom: 3px;
    right: 6px;
    transform: rotate(135deg);
    animation-delay: 3s;
}

.loading_icon span:nth-child(5) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.loading_icon span:nth-child(6) {
    bottom: 3px;
    left: 6px;
    transform: rotate(45deg);
    animation-delay: 5s;
}

.loading_icon span:nth-child(7) {
    top: 50%;
    left: 2px;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 6s;
}

.loading_icon span:nth-child(8) {
    top: 3px;
    left: 6px;
    transform: rotate(135deg);
    animation-delay: 7s;
}

@keyframes loader {
    0% {
        background-color: rgba(22, 131, 133, 0.96);
    }

    100% {
        background-color: rgba(100, 181, 170, 0.1);
    }
}


/* confirm 팝업 */
.common_confirm_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.common_confirm_bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.5);
}

.common_confirm_box {
    position: absolute;
    width: calc(100% - 60px);
    max-width: 250px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 99px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 40px 30px 30px 30px;
    background-color: #fff;
    border-radius: 10px;
}

p.common_confirm_txt {
    font-size: 20px;
    line-height: 29px;
    font-weight: 500;
    color: #191919;
    text-align: center;
    margin: 0 auto;
}

p.common_confirm_txt2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #191919;
    text-align: center;
    margin: 14px auto 44px auto;
}

.common_confirm_box .display_flex button.common_confirm_btn {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 54px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    border: 1px solid transparent;
    border-radius: 40px;
    margin: 0 auto;
}

.common_confirm_box .display_flex button#common_confirm_ok {
    background-color: #2BA9BC;
    margin-right: 10px;
    color: #FFFFFF;
}

.common_confirm_box .display_flex button#common_confirm_ok:hover {
    background-color: #136567;
}

.common_confirm_box .display_flex button#common_confirm_no {
    color: #2BA9BC;
    background-color: #FFFFFF;
    border-color: #2BA9BC;
}

.common_confirm_box .display_flex button#common_confirm_no:hover {
    color: #136567;
    border-color: #136567;
}


/* 오류 팝업 */
.common_error_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
}

.common_error_bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.5);
}

.common_error_box {
    position: absolute;
    width: calc(100% - 60px);
    max-width: 250px;
    height: auto;
    padding: 40px 30px 30px 30px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.common_error_box img {
    display: block;
    min-width: 34px;
    width: 34px;
    height: 34px;
    background-size: contain;
    margin: 0 auto;
}

p.common_error_txt {
    font-size: 20px;
    line-height: 29px;
    font-weight: 500;
    color: #191919;
    text-align: center;
    margin: 15px auto 0 auto;
}

p.common_error_txt2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #191919;
    text-align: center;
    margin: 14px auto 44px auto;
}

.common_error_ok {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 54px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #2BA9BC;
    border-radius: 40px;
    margin: 0 auto;
}

.common_error_ok:hover {
    background-color: #136567;
}


/*약관*/
.conditions_popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.conditions_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.loading_whole {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.loading_whole img {
    position: absolute;
    display: block;
    min-width: 160px;
    width: 160px;
    height: auto;
    background-size: contain;
    margin: 0 auto 20px auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -120%);
}

.loading_whole p {
    width: 100%;
    height: auto;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin: 30px auto 0 auto;
}

p.conditions_txt {
    position: absolute;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #f8f8f8;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.conditions_box {
    position: absolute;
    width: calc(100vw - 60px);
    height: calc(100vh - 130px);
    bottom: -100vw;
    left: 0;
    padding: 30px 30px 20px 30px;
    background-color: #FFFFFF;
    border-radius: 20px 20px 0 0;
}

.conditions_popup.terms_open .conditions_box {
    bottom: 0;
    transition: all 1000ms cubic-bezier(0.86, 0, 0.07, 1);
}

.conditions_popup.terms_open2 .conditions_box {
    bottom: -100vh;
    transition: all 1000ms cubic-bezier(0.86, 0, 0.07, 1);
}

.conditions_load {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    max-height: calc(100vh - 170px);
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 auto;
    padding: 0 10px 10px 0;
}

.conditions_load::-webkit-scrollbar {
    width: 5px;
    height: auto;
    border-radius: 5px;
    background-color: #F2F8F6;
}

.conditions_load::-webkit-scrollbar-thumb {
    width: 5px;
    height: auto;
    border-radius: 5px;
    background-color: #64B5AA;
}

.conditions_load .no_data_txt p {
    color: #999999;
}

.conditions_btn_whole {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

button.conditions_btn {
    display: block;
    width: 100%;
    height: 32px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    background-color: #2BA9BC;
    border-radius: 5px;
}

button.conditions_btn:hover {
    background-color: #126567;
}


/*상담신청*/
.common_counsel_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
}

.common_counsel_bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.5);
}

.common_counsel_box {
    position: absolute;
    width: calc(100% - 16px);
    height: auto;
    padding: 50px 0 36px 16px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.common_counsel_delete {
    position: absolute;
    display: block;
    min-width: 30px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    top: 12px;
    right: 12px;
}

p.common_counsel_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #333544;
    text-align: center;
    margin: 0 auto 37px auto;
}

p.common_counsel_title span {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #333544;
    text-align: center;
    margin: 0 auto;
}

.common_counsel_inner {
    width: calc(100% - 16px);
    max-height: calc(100vh - 340px);
    overflow: hidden;
    overflow-y: auto;
    padding: 0 16px 0 0;
}

.common_counsel_inner::-webkit-scrollbar {
    width: 8px;
    height: auto;
    background-color: #F4FEFF;
    border-radius: 10px;
}

.common_counsel_inner::-webkit-scrollbar-thumb {
    width: 8px;
    height: auto;
    background-color: #2BA9BC;
    border-radius: 10px;
}

.common_counsel_row {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.common_counsel_row+.common_counsel_row {
    margin-top: 16px;
}

.common_counsel_row p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
    margin: 0 auto 4px auto;
}

.common_counsel_row p span {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #2BA9BC;
    margin-left: 2px;
}

.common_counsel_input {
    width: calc(100% - 2px);
    height: auto;
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    margin: 4px auto 0 auto;
    overflow: hidden;
}

.common_counsel_row .display_flex {
    width: 100%;
    height: auto;
    margin: 4px auto 0 auto;
}

.common_counsel_row .display_flex .common_counsel_input {
    margin-top: 0;
}

.common_counsel_input input {
    display: block;
    width: calc(100% - 20px);
    height: auto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
    padding: 9px 10px;
    background-color: transparent;
}

.common_counsel_input input:read-only {
    background-color: #F9F9F9;
}

.common_counsel_input input::placeholder {
    color: #9D9D9D;
}

.common_counsel_btn {
    display: block;
    min-width: 80px;
    width: 80px;
    height: 40px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #2BA9BC;
    margin-left: 10px;
    border-radius: 6px;
}

button.common_counsel_btn:disabled {
    color: #FFFFFF !important;
    background-color: #7C7C7C !important;
}

button.common_counsel_btn:hover {
    background-color: #238493;
}

.common_counsel_area {
    width: 100%;
    height: auto;
}

.common_counsel_select {
    width: calc(100% - 2px);
    height: auto;
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    padding: 9px;
}

.common_counsel_select select {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #9D9D9D;
    -webkit-appearance: none;
    /* for chrome */
    -moz-appearance: none;
    /*for firefox*/
    appearance: none;
    background: url('/img/icon/pop_select_gr.svg') no-repeat 100% 50%/8px auto;
}

button.common_counsel_btn.common_counsel_btn_plus {
    min-width: 110px;
    width: 110px;
    color: #2BA9BC;
    background-color: #FFFFFF;
    border: 1px solid #2BA9BC;
}

button.common_counsel_btn.common_counsel_btn_plus:hover {
    background-color: #F4FEFF;
}

button.common_counsel_btn.common_counsel_btn_delete {
    min-width: 110px;
    width: 110px;
    color: #BB0000;
    background-color: #FFFFFF;
    border: 1px solid #BB0000;
}

button.common_counsel_btn.common_counsel_btn_delete:hover {
    background-color: #ffefef;
}

.common_counsel_free {
    width: 100%;
    height: auto;
    background-color: #F4FEFF;
    padding: 18px 0;
    margin: 24px auto 0 auto;
}

.common_counsel_free p {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: #2BA9BC;
    text-align: center;
}

.common_free_inner {
    width: 100%;
    height: auto;
    margin: 25px auto 0 auto;
}

.common_free_inner label {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: auto;
    margin: 0;
}

.common_free_inner label,
.common_free_inner label * {
    cursor: pointer;
}

.common_free_inner label+label {
    margin-left: 36px;
}

input[class="common_free_radio"]+span {
    position: relative;
    display: block;
    min-width: 12px;
    width: 12px;
    height: 12px;
    background-color: #FFFFFF;
    border: 1px solid #A2A2A2;
    border-radius: 10px;
    margin-right: 6px;
}

input[class="common_free_radio"]+span>span {
    position: absolute;
    display: block;
    min-width: 6px;
    width: 6px;
    height: 6px;
    border-radius: 5px;
    background-color: #FFFFFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[class="common_free_radio"]:checked+span {
    border-color: #2BA9BC;
}

input[class="common_free_radio"]:checked+span>span {
    background-color: #2BA9BC;
}

input[class="common_free_radio"]+span+span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
}

.common_counsel_conditions {
    width: 100%;
    height: auto;
    margin: 24px auto 0 auto;
}

.common_counsel_conditions_flex {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.common_counsel_conditions_flex+.common_counsel_conditions_flex {
    margin-top: 5px;
}

.common_counsel_conditions_flex label {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
}

.common_counsel_conditions_flex label,
.common_counsel_conditions_flex label * {
    cursor: pointer;
}

input[class="common_conditions_chk"]+span {
    position: relative;
    display: block;
    min-width: 12px;
    width: 12px;
    height: 12px;
    background-color: #FFFFFF;
    border: 1px solid #A2A2A2;
    border-radius: 10px;
    margin-right: 6px;
}

input[class="common_conditions_chk"]+span>span {
    position: absolute;
    display: block;
    min-width: 6px;
    width: 6px;
    height: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[class="common_conditions_chk"]:checked+span {
    background-color: #2BA9BC;
    border: 1px solid transparent;
}

input[class="common_conditions_chk"]:checked+span>span {
    background: url('/img/icon/pop_chk_wh.svg') no-repeat;
    background-size: contain;
}

input[class="common_conditions_chk"]+span+span {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #555555;
}

.common_conditions_chk_btn {
    display: block;
    min-width: 18px;
    width: 18px;
    height: 18px;
    background-color: transparent;
}

.common_conditions_chk_btn img {
    display: block;
    width: 100%;
    height: auto;
    background-size: contain;
}

.common_counsel_btn_bottom {
    width: calc(100% - 16px);
    height: auto;
    margin: 59px auto 0 0;
}

.common_counsel_btn_confirm {
    display: block;
    width: 153px;
    height: 50px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #2BA9BC;
    background-color: #FFFFFF;
    border: 1px solid #2BA9BC;
    border-radius: 30px;
    margin: 0 auto;
}

.common_counsel_btn_confirm:hover {
    background-color: #F4FEFF;
}

/* 카카오링크 팝업 */
.kakao_popup_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.kakao_popup_bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.5);
}


.kakao_popup_box {
    position: absolute;
    width: calc(100% - 60px);
    max-width: 500px;
    height: auto;
    max-height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 99px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 40px 30px 30px 30px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.kakao_popup_box .close_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.kakao_popup_box .close_btn img {
    width: 100%;
    height: 100%;
}

.kakao_input_box>p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.kakao_popup_div {
    display: grid;
    gap: 10px;
    overflow-y: auto;
    max-height: 200px;
}

.kakao_popup_content {
    gap: 10px;
    font-size: 18px;
    flex-wrap: wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
    border: 1px solid;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}

/* 문의하기 팝업 */
.ask_popup_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.ask_popup_bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.5);
}


.ask_popup_box {
    position: absolute;
    width: calc(100% - 60px);
    max-width: 500px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 99px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 40px 30px 30px 30px;
    background-color: #fff;
    border-radius: 10px;
}

.ask_popup_box .close_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.ask_popup_box .close_btn img {
    width: 100%;
    height: 100%;
}

.ask_input_box>p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.ask_input_box input,
.ask_input_box textarea {
    width: calc(100% - 18px);
    height: 38px;
    padding: 0 8px;
    border-radius: 6px;
    border: 1px solid #8D92A5;
    font-size: 14px;
}

.ask_input_box textarea {
    height: 272px;
    margin-top: 18px;
    padding: 14px 8px;
}



.ask_input_box input[type="checkbox"] {
    display: none;
}

.ask_input_box input[type="checkbox"]+span {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #CDD4DA;
    border-radius: 4px;
    margin-right: 6px;
    background: url('/img/icon/check_icon.svg') no-repeat center;
    background-size: 18px 18px;
}

.ask_look_box input[type="checkbox"]:checked+span {
    background-image: url('/img/icon/checked_icon.svg');
    border: 1px solid #2BA9BC;
}

.ask_look_box {
    margin-top: 14px;
    font-size: 14px;
}

.ask_look_box label {
    width: max-content;
    display: flex;
    align-items: center;
}

.ask_look_box label span {
    width: max-content;
}

.ask_look_box>input {
    width: calc(100% - 84px);
    margin-left: 10px;
}

.ask_ok_btn {
    display: block;
    width: 140px;
    height: 40px;
    border-radius: 6px;
    background-color: #2BA9BC;
    color: #fff;
    margin: 40px auto 0;
}

.ask_ok_btn:hover {
    background-color: #136567;
}


/* 독서활동매니지먼트 자격증 */
.certificate_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.certificate_popup_bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.5);
}

.certificate_popup_box {
    position: absolute;
    width: 100%;
    max-width: 1080px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 99px rgba(0, 0, 0, 0.1);
    border: 1px solid #F77D0D;
    box-sizing: border-box;
    padding: 40px 16px;
    background-color: #FFF6ED;
    border-radius: 10px;
}

.certificate_title {
    display: block;
    width: 100%;
    max-width: 744px;
    margin: 0 auto;
}

.teach_delete_or {
    position: absolute;
    display: block;
    min-width: 32px;
    width: 32px;
    height: 32px;
    top: 16px;
    right: 16px;
}

.teach_delete_or img {
    position: absolute;
    display: block;
    width: 20px;
    height: auto;
    background-size: contain;
    margin: 0;
    top: 2px;
    right: 2px;
}

.certificate_inner {
    height: calc(100vh - 350px);
    /* max-height: 896px; */
    background-color: #fff;
    border-radius: 6px;
    padding: 30px 10px;
    font-size: 12px;
    overflow: hidden;
}

.certificate_inner .inner_box {
    height: 100%;
    overflow: auto;
    -ms-overflow-style: none;
    /* 인터넷 익스플로러 */
    scrollbar-width: none;
    /* 파이어폭스 */
}

/* ( 크롬, 사파리, 오페라, 엣지 ) 동작 */
.certificate_inner .inner_box::-webkit-scrollbar {
    display: none;
}

.certificate_content+.certificate_content {
    margin-top: 36px;
}

.certificate_content .inner_title {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.certificate_content .title_icon {
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.certificate_content p.title {
    font-size: 18px;
    font-weight: bold;
    color: #F05612;
}

.certificate_content .certificate_img {
    width: 85px;
    height: 120px;
}

.certificate_content .quotation_icon {
    width: 36px;
    height: 36px;
    margin: 16px 0;
}

.certificate_content .content_text p {
    word-break: break-all;
}

.certificate_tables {
    background-color: rgba(141, 146, 165, 0.1);
}

.certificat_table_content {
    display: flex;
    /* align-items: center; */
    align-items: stretch;
    border-bottom: 1px solid #FEA800;
    font-size: 14px;
}

.certificat_table_content .table_title {
    min-width: 30px;
    width: 30px;
    min-height: 100px;
    background-color: #243242;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #FEA800;
}

.certificat_table_content:nth-child(3) {
    border: none;
}

.certificat_table_content .table_title p {
    display: block;
    font-size: 14px;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.certificat_table_content .table_text {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.certificat_table_content .table_text>div {
    width: 50%;
    /* height: 100px; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificat_table_content .table_text div:nth-child(1) {
    border-right: 1px solid #FEA800;
}

.certificat_table_content:nth-child(3) .table_text div {
    padding: 10px 6px 10px 14px;
    min-height: 298px;
    height: auto;
    flex-direction: column;
    font-size: 12px;
}

.certificat_table_content:nth-child(3) .table_text p {
    word-break: break-all;
    text-align: left;
    position: relative;
}

.certificat_table_content:nth-child(3) .table_text p::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background-color: #F77D0D;
    position: absolute;
    top: 7px;
    left: -8px;
}

.certificat_table_content:nth-child(3) .table_text p+p {
    margin-top: 10px;
}

.certificate_content p.sub_text {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
}

.certificate_tables table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #333544;
    font-weight: 500;
}

.certificate_tables table th {
    font-weight: 400;
}

.certificate_tables table th,
.certificate_tables table td {
    border-right: 1px solid #FEA800;
    border-bottom: 1px solid #FEA800;
    padding: 4px 0 5px;
}

.certificate_tables table td {
    padding: 10px;
}

.certificate_tables table th {
    border-bottom: 1px solid #F05612;
}

.certificate_tables table th:last-child,
.certificate_tables table td:last-child {
    border-right: none !important;
}

.certificate_tables table tr:nth-child(3) td:first-child,
.certificate_tables table tr:last-child td {
    border-bottom: none !important;
}

.certificate_tables table thead tr {
    background-color: #243242;
    color: #fff;
}

.certificate_tables table ul {
    text-align: left;
    font-weight: 400;
}

.certificate_list_box>div:first-child {
    margin-bottom: 24px;
}

.certificate_list_box p.list_box_title {
    width: max-content;
    padding: 7px 20px 8px;
    background-color: #FEA800;
    border-radius: 25px;
    font-size: 12px;
    color: #fff;
    margin-bottom: 16px;
}

.certificate_list {
    padding-left: 24px;
}

.certificate_list p {
    margin-bottom: 6px;
    position: relative;
}

.certificate_list ul {
    margin-bottom: 6px;
}

.certificate_list ul li {
    margin: 2px 0;
}

.certificate_list p::after {
    content: '';
    display: block;
    width: 10px;
    height: 8px;
    background: url('/img/icon/certificate_list_triangle.svg') no-repeat 100%;
    position: absolute;
    top: 5px;
    left: -16px;
}





/*독서활동매니지먼트 자격증 신청서*/
.certificate_application_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.certificate_application_bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.certificate_application_box {
    position: absolute;
    width: calc(100% - 42px);
    height: auto;
    background-color: #FFFFFF;
    border: 1px solid #F5F5F5;
    border-radius: 17px;
    padding: 40px 20px 0 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

p.certificate_application_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: #333544;
    text-align: center;
    margin: 0 auto;
}

.certificate_application_inner {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 300px);
    margin: 50px auto 0 auto;
    padding: 0 0 40px 0;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 10px;
}

.certificate_application_inner::-webkit-scrollbar {
    width: 10px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.certificate_application_inner::-webkit-scrollbar-thumb {
    width: 10px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.certificate_application_row {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.certificate_application_row+.certificate_application_row {
    margin-top: 20px;
}

p.certificate_application_title2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #333544;
    text-align: start;
    margin: 0 0 10px 16px;
}

.certificate_application_row select {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #AAAAAA;
    padding: 10px 16px;
    -webkit-appearance: none;
    /* for chrome */
    -moz-appearance: none;
    /*for firefox*/
    appearance: none;
    background: url('/img/icon/pop_select_dw_dk.svg') no-repeat #F1F4F8 calc(100% - 10px) 50%/24px auto;
    border-radius: 20px;
}

.certificate_application_row select+select {
    margin-top: 10px;
}

p.certificate_application_info {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
    margin: 5px auto 0 auto;
}

.certificate_application_input {
    width: calc(100% - 32px);
    height: auto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #191919;
    padding: 10px 16px;
    border-radius: 30px;
    margin: 0 auto;
    background-color: #F1F4F8;
}

.certificate_application_input::placeholder {
    color: #AAAAAA;
}

.certificate_application_label {
    width: max-content;
    height: auto;
    padding: 8px 22px;
    border-radius: 20px;
    background-color: #F1F4F8;
}

.certificate_application_label+.certificate_application_label {
    margin-left: 20px;
}

.certificate_application_label,
.certificate_application_label * {
    cursor: pointer;
}

.certificate_application_label:hover {
    background-color: #ebf0f7;
}

input[class="certificate_application_radio"]+span {
    position: relative;
    display: block;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border: 1px solid #CDD4DA;
    background-color: #FFFFFF;
    border-radius: 10px;
    margin-right: 10px;
}

input[class="certificate_application_radio"]+span>span {
    position: absolute;
    min-width: 10px;
    width: 10px;
    height: 10px;
    background-color: #CDD4DA;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[class="certificate_application_radio"]:checked+span {
    border-color: #FEA800;
}

input[class="certificate_application_radio"]:checked+span>span {
    background-color: #FEA800;
}

.certificate_application_row .pop_request_btn.pop_request_btn_search {
    background-color: #FEA800;
}

.certificate_application_row .pop_request_btn.pop_request_btn_search:hover {
    background-color: #F77D0D;
}

p.certificate_application_price_txt {
    width: calc(100% - 32px);
    height: auto;
    font-size: 22px;
    line-height: 33px;
    font-weight: bold;
    color: #333544;
    padding: 20px 16px;
    border-radius: 13px;
    background-color: #F1F4F8;
}

.certificate_application_btn_whole {
    width: 100%;
    max-width: 310px;
    height: auto;
    margin: 0 auto 40px auto;
}

.certificate_application_btn2 {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    border: 1px solid #FEA800;
    border-radius: 10px;
    margin: 0;
}

.certificate_application_btn2.certificate_application_btn2_1 {
    color: #FEA800;
    background-color: #FFFFFF;
    margin-right: 10px;
}

.certificate_application_btn2.certificate_application_btn2_2 {
    color: #FFFFFF;
    background-color: #FEA800;
}

.certificate_application_btn2.certificate_application_btn2_1:hover {
    color: #F77D0D;
}

.certificate_application_btn2.certificate_application_btn2_2:hover {
    background-color: #F77D0D;
}





/*지원신청서*/
.pop_support_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.pop_support_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.pop_support_box {
    position: absolute;
    width: calc(100% - 80px);
    max-width: 288px;
    height: auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pop_support_whole.pop_support_whole1 .pop_support_box {
    width: calc(100% - 40px);
    max-width: none;
}

p.pop_support_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: #333544;
    text-align: center;
    margin: 0 auto 50px auto;
}

.pop_support_inner {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 360px);
    margin: 0 auto;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 10px;
}

.pop_support_inner::-webkit-scrollbar {
    width: 10px;
    height: auto;
    background-color: #F9F9F9;
    border-radius: 20px;
}

.pop_support_inner::-webkit-scrollbar-thumb {
    width: 10px;
    height: auto;
    background-color: #8D92A5;
    border-radius: 20px;
}

.pop_support_row {
    width: 100%;
    height: auto;
    margin: 20px auto 0 auto;
}

.pop_support_row:first-child {
    margin-top: 0;
}

.pop_support_row p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #333544;
    margin: 0 auto 10px 16px;
}

.pop_support_row .display_flex {
    width: 100%;
    height: auto;
    margin: 0 auto 7px auto;
}

.pop_support_row .display_flex p {
    margin-bottom: 0;
}

.pop_support_btn {
    display: block;
    min-width: 52px;
    width: max-content;
    height: auto;
    padding: 5px 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    border-radius: 30px;
}

.pop_support_btn.pop_support_btn_plus {
    color: #FFFFFF;
    background-color: #2BA9BC;
}

.pop_support_btn.pop_support_btn_plus:hover {
    background-color: #238493;
}

.pop_support_btn.pop_support_btn_delete {
    color: #2BA9BC;
    background-color: #FFFFFF;
    border: 1px solid #2BA9BC;
}

.pop_support_btn.pop_support_btn_delete:hover {
    color: #238493;
    background-color: #F9F9F9;
    border: 1px solid #238493;
}

.pop_support_input {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background-color: #F1F4F8;
}

.pop_support_input input {
    width: calc(100% - 32px);
    height: auto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
    padding: 10px 16px;
    background-color: transparent;
}

.pop_support_input input::placeholder {
    color: #AAAAAA;
}

.pop_support_row_whole .pop_support_row {
    margin-top: 20px;
}

.pop_support_txtarea {
    width: 100%;
    height: auto;
    border-radius: 13px;
    background-color: #F1F4F8;
    margin: 0 auto;
}

.pop_support_txtarea textarea {
    width: calc(100% - 32px);
    height: auto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
    background-color: transparent;
    padding: 10px 16px;
}

.pop_support_txtarea textarea::placeholder {
    color: #AAAAAA;
}

.pop_support_btn_whole {
    width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
}

.pop_support_pop_btn {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    border-radius: 10px;
    border: 1px solid transparent;
}

.pop_support_pop_btn.pop_support_pop_btn_cancel {
    color: #2BA9BC;
    border-color: #2BA9BC;
    background-color: #FFFFFF;
    margin-right: 10px;
}

.pop_support_pop_btn.pop_support_pop_btn_cancel:hover {
    border-color: #238493;
    background-color: #F9F9F9;
}

.pop_support_pop_btn.pop_support_pop_btn_support {
    color: #FFFFFF;
    border-color: #2BA9BC;
    background-color: #2BA9BC;
}

.pop_support_pop_btn.pop_support_pop_btn_support:hover {
    border-color: #238493;
    background-color: #238493;
}

/*지원신청완료*/
.pop_support_whole2 .pop_support_box {
    width: calc(100% - 106px);
    height: auto;
    padding: 46px 33px;
    background-color: #FFFFFF;
    box-shadow: 0 3px 10px rgba(221, 221, 221, 0.16);
    border-radius: 10px;
}

.pop_support_whole2 .pop_support_inner {
    width: calc(100% - 80px);
    padding: 30px 40px;
    background-color: #F2F4F8;
    border-radius: 17px;
    margin: 35px auto 50px auto;
}

.pop_support_whole2 .pop_support_inner p {
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
    color: #333544;
    text-align: center;
    margin: 0 auto;
}

.pop_support2_btn {
    display: block;
    min-width: 150px;
    width: 150px;
    height: 44px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #2BA9BC;
    margin: 0 auto;
    border-radius: 10px;
}

.pop_support2_btn:hover {
    background-color: #238493;
}






/*교육신청서*/
.pop_request_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.pop_request_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.pop_request_box {
    position: absolute;
    width: calc(100% - 80px);
    max-width: 288px;
    height: auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pop_request_whole.pop_request_whole1 .pop_request_box,
.pop_request_whole.pop_request_whole2 .pop_request_box {
    width: calc(100% - 40px);
    max-width: none;
}

p.pop_request_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: #333544;
    text-align: center;
    margin: 0 auto 50px auto;
}

.pop_request_inner {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 360px);
    margin: 0 auto;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 10px;
}

.pop_request_inner::-webkit-scrollbar {
    width: 10px;
    height: auto;
    background-color: #F9F9F9;
    border-radius: 20px;
}

.pop_request_inner::-webkit-scrollbar-thumb {
    width: 10px;
    height: auto;
    background-color: #8D92A5;
    border-radius: 20px;
}

.pop_request_row {
    width: 100%;
    height: auto;
    margin: 20px auto 0 auto;
}

.pop_request_row:first-child {
    margin-top: 0;
}

.pop_request_row p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #333544;
    margin: 0 auto 10px 16px;
}

.pop_request_row select {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #9D9D9D;
    -webkit-appearance: none;
    /* for chrome */
    -moz-appearance: none;
    /*for firefox*/
    appearance: none;
    background: url('/img/icon/pop_select_dw_bk.svg') no-repeat #F1F4F8 calc(100% - 16px) 50%/24px auto;
}

.pop_request_row select+select {
    margin: 10px auto 0 auto;
}

p.pop_request_info {
    max-width: 271px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
    margin: 5px auto 0 0;
}

.pop_request_row .display_flex {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.pop_request_input {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background-color: #F1F4F8;
}

.pop_request_input input {
    width: calc(100% - 32px);
    height: auto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
    padding: 10px 16px;
    background-color: transparent;
}

.pop_request_input input::placeholder {
    color: #AAAAAA;
}

.pop_request_input+.pop_request_input {
    margin-top: 6px;
}

.pop_request_row label {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    width: max-content;
    height: auto;
    padding: 10px 24px 10px 20px;
    background-color: #F1F4F8;
    border-radius: 30px;
}

.pop_request_row label,
.pop_request_row label * {
    cursor: pointer;
}

.pop_request_row label+label {
    margin-left: 20px;
}

input[class="pop_request_wman"]+span {
    position: relative;
    display: block;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #FFFFFF;
    border: 1px solid #CDD4DA;
    margin: 0 10px 0 0;
}

input[class="pop_request_wman"]+span span {
    position: absolute;
    min-width: 10px;
    width: 10px;
    height: 10px;
    background-color: #CDD4DA;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[class="pop_request_wman"]+span+span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
}

input[class="pop_request_wman"]:checked+span {
    border-color: #2BA9BC;
}

input[class="pop_request_wman"]:checked+span span {
    background-color: #2BA9BC;
}

.pop_request_btn_search {
    width: 100%;
    height: 40px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #2BA9BC;
    border-radius: 30px;
    margin: 6px auto;
}

.pop_request_btn_search:hover {
    background-color: #238493;
}

.pop_request_row .pop_request_input+.pop_request_input {
    margin: 6px auto 0 auto;
}

p.pop_request_email {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #333544;
    text-align: center;
    margin: 6px auto;
}

.pop_request_btn_whole {
    width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
}

.pop_request_pop_btn {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    border-radius: 10px;
    border: 1px solid transparent;
}

.pop_request_pop_btn.pop_request_pop_btn_cancel {
    color: #2BA9BC;
    border-color: #2BA9BC;
    background-color: #FFFFFF;
    margin-right: 10px;
}

.pop_request_pop_btn.pop_request_pop_btn_cancel:hover {
    color: #238493;
    border-color: #238493;
    background-color: #F9F9F9;
}

.pop_request_pop_btn.pop_request_pop_btn_support {
    color: #FFFFFF;
    border-color: #2BA9BC;
    background-color: #2BA9BC;
}

.pop_request_pop_btn.pop_request_pop_btn_support:hover {
    border-color: #238493;
    background-color: #238493;
}

.pop_request_select_whole {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.pop_request_select_whole input {
    position: absolute;
    width: calc(100% - 80px);
    padding: 10px 16px;
    background-color: #F1F4F8;
    margin: 0 auto 0 0;
}

/*교육신청확인2*/
.pop_request_whole3 .pop_request_box {
    width: calc(100% - 106px);
    max-width: 254px;
    height: auto;
    padding: 46px 33px 40px 33px;
}

.pop_request_whole3 .pop_request_box p.pop_request_title {
    margin-bottom: 20px;
}

.pop_request_whole3 .pop_request_box p.pop_request_txt {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
    text-align: center;
    margin-bottom: 40px;
}

.pop_request3_inner {
    width: calc(100% - 80px);
    height: auto;
    padding: 30px 40px;
    background-color: #F2F4F8;
    border-radius: 17px;
    margin: 35px auto 50px auto;
}

.pop_request3_inner p {
    font-size: 20px;
    line-height: 29px;
    font-weight: bold;
    color: #333544;
    text-align: center;
}

.pop_request3_btn {
    display: block;
    width: 100%;
    max-width: 150px;
    height: 44px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #2BA9BC;
    border-radius: 10px;
    margin: 0 auto;
}

.pop_request3_btn:hover {
    background-color: #238493;
}



/* 가맹 상담신청서 */
.pop_join_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.pop_join_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.pop_join_box {
    position: absolute;
    width: calc(100% - 40px);
    max-width: 860px;
    height: auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pop_request_inner {
    max-width: 520px;
    margin: 0 auto;
}

input[class="pop_join_wman"]+span {
    position: relative;
    display: block;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #FFFFFF;
    border: 1px solid #CDD4DA;
    margin: 0 10px 0 0;
}

input[class="pop_join_wman"]+span span {
    position: absolute;
    min-width: 10px;
    width: 10px;
    height: 10px;
    background-color: #CDD4DA;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[class="pop_join_wman"]+span+span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
}

input[class="pop_join_wman"]:checked+span {
    border-color: #F77D0D;
}

input[class="pop_join_wman"]:checked+span span {
    background-color: #F77D0D;
}

.pop_request_row p span {
    color: #F77D0D;
}

.pop_join_textarea {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background-color: #F1F4F8;
}

.pop_join_textarea textarea {
    width: calc(100% - 32px);
    height: 130px;
    font-size: 14px;
    /* line-height: 20px; */
    font-weight: 400;
    color: #333544;
    padding: 10px 16px;
    background-color: transparent;
}

.pop_request_input textarea::placeholder {
    color: #AAAAAA;
}

.pop_join_agree {
    width: calc(100% - 20px);
    height: 130px;
    padding: 10px;
    overflow-x: scroll;
    border-radius: 20px;
    background-color: #F1F4F8;
    -ms-overflow-style: none;
    /* 인터넷 익스플로러 */
    scrollbar-width: none;
    /* 파이어폭스 */
}

.pop_join_agree::-webkit-scrollbar {
    display: none;
}

.pop_join_row .display_flex {
    margin-top: 10px;
}

.pop_join_btn_whole {
    width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
    max-width: 310px;
}

.pop_join_pop_btn {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    border-radius: 10px;
    border: 1px solid transparent;
}

.pop_join_pop_btn.pop_join_pop_btn_cancel {
    color: #FEA800;
    border-color: #FEA800;
    background-color: #FFFFFF;
    margin-right: 10px;
}

.pop_join_pop_btn.pop_join_pop_btn_cancel:hover {
    color: #E29600;
    border-color: #E29600;
    background-color: #F9F9F9;
}

.pop_join_pop_btn.pop_join_pop_btn_support {
    color: #FFFFFF;
    border-color: #FEA800;
    background-color: #FEA800;
}

.pop_join_pop_btn.pop_join_pop_btn_support:hover {
    border-color: #E29600;
    background-color: #E29600;
}




/* 신입 및 경력직 지원 신청서 */
.backing_certificate_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.backing_certificate_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.backing_certificate_box {
    position: absolute;
    width: calc(100% - 40px);
    max-width: 860px;
    height: auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.backing_certificate_inner {
    width: 100%;
    max-width: 520px;
    height: auto;
    max-height: calc(100vh - 300px);
    margin: 50px auto 0 auto;
    padding: 0 0 40px 0;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 10px;
}

.backing_certificate_inner::-webkit-scrollbar {
    width: 10px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.backing_certificate_inner::-webkit-scrollbar-thumb {
    width: 10px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.backing_certificate_row {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.backing_certificate_row+.backing_certificate_row {
    margin-top: 20px;
}

p.backing_certificate_title2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #333544;
    text-align: start;
    margin: 0 0 10px 16px;
}

p.backing_certificate_title2 span {
    color: #F05612;
}

.backing_certificate_row select {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #AAAAAA;
    padding: 10px 16px;
    -webkit-appearance: none;
    /* for chrome */
    -moz-appearance: none;
    /*for firefox*/
    appearance: none;
    background: url('/img/icon/pop_select_dw_dk.svg') no-repeat #F1F4F8 calc(100% - 10px) 50%/24px auto;
    border-radius: 20px;
}

.backing_certificate_row select+select {
    margin-top: 10px;
}

p.certificate_application_info {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
    margin: 5px auto 0 auto;
}

.backing_certificate_input,
.backing_file_name {
    width: calc(100% - 32px);
    height: auto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #191919;
    padding: 10px 16px;
    border-radius: 30px;
    margin: 0 auto;
    background-color: #F1F4F8;
}

.backing_certificate_input::placeholder {
    color: #AAAAAA;
}


label.backing_btn {
    width: 68px;
    height: 30px;
    border-radius: 30px;
    background-color: #F8A801;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.backing_file_name {
    color: #AAAAAA;
}

p.backing_certificate_text {
    margin-top: 10px;
    font-size: 14px;
}

.backing_certificate_agree {
    width: calc(100% - 20px);
    height: 130px;
    padding: 10px;
    overflow-x: scroll;
    border-radius: 20px;
    background-color: #F1F4F8;
    -ms-overflow-style: none;
    /* 인터넷 익스플로러 */
    scrollbar-width: none;
    /* 파이어폭스 */
}

.backing_certificate_agree::-webkit-scrollbar {
    display: none;
}

.certificate_agree_label {
    background-color: #F1F4F8;
    margin-top: 10px;
    min-width: 60px;
    width: 60px;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
}

.certificate_agree_label:nth-child(2) {
    min-width: 120px;
    width: 120px;
    margin-left: 20px;
}

input[class="certificate_agree"]+span {
    position: relative;
    display: block;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #FFFFFF;
    border: 1px solid #CDD4DA;
    margin: 0 10px 0 0;
}

input[class="certificate_agree"]+span span {
    position: absolute;
    min-width: 10px;
    width: 10px;
    height: 10px;
    background-color: #CDD4DA;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[class="certificate_agree"]+span+span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333544;
}

input[class="certificate_agree"]:checked+span {
    border-color: #F77D0D;
}

input[class="certificate_agree"]:checked+span span {
    background-color: #F77D0D;
}

.backing_certificate_btn_whole {
    width: 100%;
    max-width: 310px;
    height: auto;
    margin: 0 auto;
}

/* 신입 및 경력직 지원 신청서 완료 */
.certificate_confirm_popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.certificate_confirm_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

/* 
.certificate_confirm_popup {
    position: absolute;
    width: calc(100% - 80px);
    max-width: 860px;
    height: auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.certificate_confirm_popup .pop_support_box {
    width: calc(100% - 106px);
    height: auto;
    padding: 46px 33px;
    background-color: #FFFFFF;
    box-shadow: 0 3px 10px rgba(221, 221, 221, 0.16);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.certificate_confirm_popup .pop_support_inner {
    width: calc(100% - 80px);
    padding: 30px 40px;
    background-color: #F2F4F8;
    border-radius: 17px;
    margin: 35px auto 50px auto;
}

.certificate_confirm_popup .pop_support_inner p {
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
    color: #333544;
    text-align: center;
    margin: 0 auto;
}

.pop_support2_btn {
    display: block;
    min-width: 150px;
    width: 150px;
    height: 44px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #FEA800;
    margin: 0 auto;
    border-radius: 10px;
}

.pop_support2_btn:hover {
    background-color: #F77D0D;
}

.big_popup_whole {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.big_popup_whole,
.big_popup_whole * {
    cursor: pointer;
}

.big_popup_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.big_popup_box {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.big_popup_img {
    width: 100%;
    height: auto;
    max-height: 100vh;
}

.big_popup_img img {
    display: block;
    width: auto;
    max-width: 100vw;
    height: auto;
    max-height: 100vh;
    background-size: contain;
    margin: 0 auto;
}



.big_popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.big_popup_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.big_popup_img {
    width: calc(100% - 40px);
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.big_popup_img {
    width: 100%;
    height: auto;
}






/* 교육확인 팝업 */
.check_result_popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.check_result_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.check_resul_box {
    position: absolute;
    width: calc(100% - 40px);
    max-width: 860px;
    height: auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.check_result_input {
    width: calc(100% - 32px);
    height: auto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #191919;
    padding: 10px 16px;
    border-radius: 30px;
    margin: 0 auto;
    background-color: #F1F4F8;
}

.backing_certificate_input::placeholder {
    color: #AAAAAA;
}

.check_result_btn {
    display: block;
    min-width: 150px;
    width: 150px;
    height: 44px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #FEA800;
    margin: 30px auto 0;
    border-radius: 10px;
}

.check_result_btn:hover {
    background-color: #F77D0D;
}

.check_result_btn_whole {
    width: 100%;
    max-width: 310px;
    height: auto;
    margin: 0 auto;
}

.check_result_btn {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    border: 1px solid #2BA9BC;
    border-radius: 10px;
}

.check_result_btn.check_result_btn1 {
    color: #2BA9BC;
    background-color: #FFFFFF;
    margin-right: 10px;
}

.check_result_btn.check_result_btn2 {
    color: #FFFFFF;
    background-color: #2BA9BC;
}

.check_result_btn.check_result_btn1:hover {
    color: #238493;
    border-color: #238493;
}

.check_result_btn.check_result_btn2:hover {
    background-color: #238493;
}







/* 교육결과 확인 */
.check_result_popup2 {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.check_result_bg2 {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.check_resul_box2 {
    position: absolute;
    /* width: calc(100% - 80px); */
    width: 100%;
    max-width: 514px;
    height: auto;
    padding: 40px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}

.content_result_box {
    border-top: 1px solid #3CBBD3;
    border-bottom: 1px solid #3CBBD3;
}

.content_result_inner {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.content_result_inner p {
    padding: 10px 0;
    word-break: break-all;
    font-size: 16px;
}

.content_result_inner+.content_result_inner {
    border-top: 1px solid #8D92A5;
}

.content_result_inner>p:nth-child(1) {
    min-width: 66px;
    width: 66px;
    text-align: center;
    background-color: rgba(141, 146, 165, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.content_result_inner2 {
    width: 100%;
}

.content_result_inner2 p {
    margin-left: -10px;
    padding-left: 10px;
}

.content_result_inner2 p:nth-child(1) {
    border-bottom: 1px solid #8D92A5;
}






/* 수료증 팝업 */
.certificate_page_popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 12;
    display: none;
}

.certificate_page_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.certificate_page_box {
    position: absolute;
    /* width: calc(100% - 80px); */
    width: 100%;
    max-width: 640px;
    height: auto;
    padding: 12px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.certificate_close_box {
    width: 100%;
    height: 42px;
}

.certificate_close_btn {
    display: block;
    margin: 0 0 0 auto;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.certificate_close_btn img {
    display: block;
    width: 100%;
    height: 100%;
}

.page_certificate {
    height: auto;
    max-height: 620px;
    overflow: hidden;
    overflow-y: auto;
    -ms-overflow-style: none;
    /* 인터넷 익스플로러 */
    scrollbar-width: none;
    /* 파이어폭스 */
}

.page_certificate::-webkit-scrollbar {
    display: none;
}

.certificate_inner_whole {
    width: calc(100% - 8px);
    max-width: 560px;
    min-height: 448px;
    height: 82.2222vw;
    max-height: 846px;
    border: 2px solid #707070;
    padding: 2px;
    margin: 0 auto;
    page-break-after: always;
}

.page.on_print {
    page-break-before: always;
}

@media print {

    body,
    div {
        position: relative;
    }

    .page,
    .SizeRatio {
        page-break-inside: avoid;
        -webkit-region-break-inside: avoid;
        position: relative;
    }

}

.certificate_inner_box_border {
    border: 1px solid #707070;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

p.certificate_title {
    font-size: 21px;
    padding-top: 30px;
    text-align: center;
}

.certificate_inner_box {
    margin-top: 30px;
}

.certificate_inner_text {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.certificate_inner_text p {
    width: 100%;

    font-size: 12px;
    line-height: 14px;
    padding: 6px 0;
}

.certificate_inner_text {
    border-top: 1px solid #707070;
}

.certificate_inner_text:last-child {
    border-bottom: 1px solid #707070;
}

.certificate_inner_text p:nth-child(1) {
    min-width: 84px;
    width: 84px;
    text-align: center;
    border-right: 1px solid #707070;
}

.certificate_inner_text p:nth-child(2) {
    /* border-right: none; */
    padding-left: 10px;
}

.certificate_text_box {
    margin-top: 58px;
    margin-left: 10px;
}

.certificate_text_box p {
    font-size: 12px;
    margin-bottom: 14px;
    margin-left: 22px;
}

.certificate_text_box p:nth-child(2) {
    margin-left: 0;
}

.certificate_text_box p:nth-child(3) {
    margin-left: 0;
}

.certificate_bottom_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 30px);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.certificate_bottom_box p {
    font-size: 12px;
    margin: 0 30px;
    text-align: center;
}

.certificate_popup_logo {
    display: block;
    width: 50px;
    height: auto;
}

.seal_box {
    display: block;
    width: 38px;
    height: 38px;
}

.page {}

@page {
    size: A4;
    margin: 0;
}

@media print {
    .page {
        margin: 0;
        border: initial;
        border-radius: initial;
        width: initial;
        min-height: initial;
        box-shadow: initial;
        background: initial;
        page-break-after: always;
    }
}



/* 후기 자세히보기 팝업 */
.postscript_detail_popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.postscript_detail_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.postscript_detail_box {
    position: absolute;
    width: calc(100% - 40px);
    max-width: 860px;
    height: auto;
    max-height: 580px;
    padding: 40px 20px;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.postscript_detail_inner {
    width: 100%;
    height: auto;
    max-height: 600px;
    overflow: hidden;
    overflow-y: auto;
    -ms-overflow-style: none;
    /* 인터넷 익스플로러 */
    scrollbar-width: none;
    /* 파이어폭스 */
}

.postscript_detail_inner::-webkit-scrollbar {
    display: none;
}

.postscript_detail_img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 14px auto 10px;
}

.postscript_detail_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.postscript_detail_popup p.reading_review_content {
    font-size: 14px;
    display: block;
}

.reading_review_content_box {
    max-height: 150px;
    /* max-height: 360px; */
    overflow: hidden;
    overflow-y: auto;
    margin-bottom: 8px;
    -ms-overflow-style: none;
    /* 인터넷 익스플로러 */
    scrollbar-width: none;
    /* 파이어폭스 */
}


.reading_review_content_box::-webkit-scrollbar {
    display: none;
}



.advertisement_popup_whole {
    position: fixed;
    width: 346px;
    height: 440px;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.advertisement_popup_box {
    position: absolute;
    width: 100%;
    max-width: 346px;
    height: auto;
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
}

.advertisement_img {
    width: 100%;
    height: 395px;
    overflow: hidden;
}

.advertisement_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advertisement_btn_box button {
    display: block;
    width: 100%;
    height: 45px;
    border-top: 1px solid #EDF1F4;
    cursor: pointer;
}

.advertisement_btn_box button:first-child {
    width: calc(100% - 1px);
    border-right: 1px solid #EDF1F4;
}




.advertisement_popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
    /* display: none; */
}

.common_close {
    display: none;
}


.advertisement_bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(25, 25, 25, 0.8);
}

.advertisement_whole {
    position: absolute;
    width: calc(100% - 40px);
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.advertisement_swiper a.mobile_link {
    display: block;
    width: 100%;
    overflow: hidden;
    height: 91.6667vw;
    background-color: #fff;
}

.advertisement_swiper a.mobile_link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile_close_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile_close_btn button {
    width: 50%;
    height: 7.5vw;
    font-size: 2.5vw;
    background-color: #191919;
    color: #fff;
}





@media (max-width: 359px) {

    .common_alert_box,
    .common_confirm_box,
    .common_stanby_box,
    .common_error_box {
        padding: 40px 20px 30px 20px;
    }

    .advertisement_popup_whole {
        width: 100%;
    }

    .kakao_popup_content {
        gap: 5px;
        font-size: 13px;
    }

    .kakao_icon {
        width: 30px;
        height: 30px;
    }

    .kakao_badge {
        width: 15px;
        height: 15px;
    }
}

@media (min-width: 468px) {
    .certificate_inner_whole {
        min-height: 550px;
    }
}

@media (min-width: 600px) {
    .certificate_inner_whole {
        min-height: 700px;
    }

    p.certificate_title {
        font-size: 40px;
        padding-top: 46px;
    }

    .certificate_inner_text p {
        padding: 10px 0;
        font-size: 18px;
        line-height: 20px;
    }

    .certificate_inner_text p:nth-child(1) {
        min-width: 158px;
        width: 158px;
    }

    .certificate_inner_text p span {
        display: inline-block;
        font-size: 12px;
    }

    .certificate_text_box {
        margin-top: 108px;
        margin-left: 18px;
    }

    .certificate_text_box p {
        font-size: 24px;
        margin-left: 48px;
    }

    .certificate_bottom_box p {
        font-size: 18px;
        margin: 0 46px;
    }

    .certificate_popup_logo {
        width: 94px;
    }

    .seal_box {
        width: 72px;
        height: 72px;
    }

}


@media (min-width: 1024px) {
    .advertisement_popup_box {
        top: 250px;
        left: 160px;
        transform: translate(0);
    }

    /* alert 팝업 */
    .common_alert_box,
    .common_stanby_box,
    .common_confirm_box,
    .common_error_box {
        max-width: 386px;
        padding: 94px 87px;
    }

    p.common_alert_txt {
        font-size: 28px;
        line-height: 37px;
    }

    p.common_alert_txt2 {
        font-size: 18px;
        line-height: 27px;
        margin: 13px auto 43px auto;
    }

    .common_alert_ok {
        min-width: 240px;
    }


    /* 스탠바이 팝업 */
    p.common_stanby_txt {
        font-size: 28px;
        line-height: 37px;
    }

    p.common_stanby_txt2 {
        font-size: 18px;
        line-height: 27px;
        margin: 13px auto 43px auto;
    }


    /* confirm 팝업 */
    p.common_confirm_txt {
        font-size: 28px;
        line-height: 37px;
    }

    p.common_confirm_txt2 {
        font-size: 18px;
        line-height: 27px;
        margin: 13px auto 43px auto;
    }

    .common_confirm_box .display_flex button.common_confirm_btn {
        width: 240px;
    }


    /*약관*/
    .conditions_box {
        width: calc(100vw - 100px);
        padding: 40px 50px 0 50px;
        ;
    }

    .conditions_load {
        height: calc(100vh - 200px);
        max-height: calc(100vh - 200px);
    }

    p.conditions_title {
        font-size: 20px;
        line-height: 29px;
    }

    button.conditions_btn {
        font-size: 16px;
        line-height: 24px;
        height: 48px;
    }



    p.common_error_txt {
        font-size: 28px;
        line-height: 37px;
    }

    p.common_error_txt2 {
        font-size: 18px;
        line-height: 27px;
        margin: 13px auto 43px auto;
    }

    .common_error_ok {
        min-width: 240px;
    }


    /*상담신청*/
    .common_counsel_box {
        width: calc(100% - 90px);
        max-width: 470px;
        padding: 40px 45px 45px 45px;
    }

    .common_counsel_delete {
        min-width: 36px;
        width: 36px;
        height: 36px;
        top: 10px;
    }

    p.common_counsel_title {
        font-size: 24px;
        line-height: 36px;
        font-weight: 500;
        margin-bottom: 39px;
    }

    p.common_counsel_title span {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
    }

    .common_counsel_inner {
        width: 100%;
        max-height: calc(100vh - 400px);
        padding: 0 20px 0 0;
    }

    .common_counsel_row+.common_counsel_row {
        margin-top: 20px;
    }

    .common_counsel_row p {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 9px;
    }

    .common_counsel_row p span {
        font-size: 20px;
        line-height: 26px;
        margin-left: 4px;
    }

    .common_counsel_input {
        border-radius: 6px;
        margin: 9px auto 0 auto;
    }

    .common_counsel_row .display_flex {
        margin-top: 9px;
    }

    .common_counsel_row .display_flex+.display_flex {
        margin-top: 6px;
    }

    .common_counsel_row .display_flex .common_counsel_input {
        margin-top: 0;
    }

    .common_counsel_input input {
        width: calc(100% - 22px);
        font-size: 16px;
        line-height: 24px;
        padding: 12px 11px;
    }

    .common_counsel_btn {
        min-width: 130px;
        width: 130px;
        height: 50px;
        font-size: 16px;
        line-height: 24px;
    }

    .common_counsel_select {
        padding: 12px 11px;
    }

    .common_counsel_select select {
        font-size: 16px;
        line-height: 24px;
    }

    button.common_counsel_btn.common_counsel_btn_plus {
        min-width: 230px;
        width: 230px;
    }

    button.common_counsel_btn.common_counsel_btn_delete {
        min-width: 230px;
        width: 230px;
    }

    .common_counsel_free {
        padding: 22px 0 21px 0;
        margin-top: 20px;
    }

    .common_counsel_free p {
        font-size: 20px;
        line-height: 29px;
    }

    .common_free_inner {
        margin-top: 16px;
    }

    .common_free_inner label+label {
        margin-left: 60px;
    }

    input[class="common_free_radio"]+span {
        min-width: 16px;
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }

    input[class="common_free_radio"]+span>span {
        min-width: 10px;
        width: 10px;
        height: 10px;
    }

    input[class="common_free_radio"]+span+span {
        font-size: 18px;
        line-height: 27px;
    }

    .common_counsel_conditions {
        margin-top: 25px;
    }

    .common_counsel_conditions_flex+.common_counsel_conditions_flex {
        margin-top: 8px;
    }

    input[class="common_conditions_chk"]+span {
        min-width: 16px;
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }

    input[class="common_conditions_chk"]+span>span {
        min-width: 10px;
        width: 10px;
        height: 6px;
    }

    input[class="common_conditions_chk"]+span+span {
        font-size: 16px;
        line-height: 24px;
    }

    .common_conditions_chk_btn {
        min-width: 24px;
        width: 24px;
        height: 24px;
    }

    .common_counsel_btn_bottom {
        width: 100%;
        margin: 60px auto 0 auto;
    }

    .common_counsel_btn_confirm {
        width: 265px;
        height: 60px;
        font-size: 18px;
        line-height: 27px;
    }





    /*독서활동매니지먼트 자격증 신청서*/
    .certificate_application_box {
        width: calc(100% - 342px);
        max-width: 520px;
        padding: 50px 170px 0 170px;
    }

    p.certificate_application_title {
        font-size: 18px;
        line-height: 27px;
    }

    .certificate_application_inner {
        margin-top: 59px;
        padding-bottom: 50px;
        padding-right: 110px;
    }

    .certificate_application_row select+select {
        margin: 0 0 0 10px;
    }

    p.certificate_application_price_txt {
        font-size: 30px;
        line-height: 45px;
        padding: 16px;
        border-radius: 20px;
    }

    .certificate_application_btn_whole {
        margin-bottom: 50px;
    }

    .certificate_application_flex {
        width: 100%;
        height: auto;
        margin: 0 auto 10px auto;
    }

    .certificate_application_flex .pop_request_input {
        margin: 0 10px 0 0;
    }

    .certificate_application_row .pop_request_input+.pop_request_input {
        margin-top: 10px;
    }






    /*지원신청서*/
    .pop_support_box {
        width: calc(100% - 380px);
        max-width: 520px;
        padding: 50px 170px;
        border-radius: 17px;
    }

    .pop_support_whole.pop_support_whole1 .pop_support_box {
        max-width: 520px;
    }

    p.pop_support_title {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 59px;
    }

    .pop_support_inner {
        max-height: calc(100vh - 400px);
        padding-right: 80px;
    }

    .w_display_flex .pop_support_row+.pop_support_row {
        margin-left: 10px;
    }

    .pop_support_row .display_flex {
        margin-bottom: 9px;
    }

    .pop_support_row_whole .pop_support_row {
        margin-top: 20px;
    }

    .pop_support_txtarea {
        width: 100%;
        height: auto;
        border-radius: 13px;
        background-color: #F1F4F8;
        margin: 0 auto;
    }

    .pop_support_txtarea textarea {
        width: calc(100% - 32px);
        height: auto;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        color: #333544;
        background-color: transparent;
        padding: 10px 16px;
    }

    .pop_support_txtarea textarea::placeholder {
        color: #AAAAAA;
    }

    .pop_support_pop_btn {
        max-width: 150px;
        height: 44px;
    }

    /*지원신청완료*/
    .pop_support_whole2 .pop_support_box {
        width: calc(100% - 106px);
        max-width: 256px;
        padding: 46px 122px 40px 122px;
    }

    .pop_support_whole2 p.pop_support_title {
        margin-bottom: 35px;
    }

    .pop_support_whole2 .pop_support_inner {
        width: calc(100% - 68px);
        padding: 30px 34px;
    }

    .pop_support_whole2 .pop_support_inner p {
        font-size: 14px;
        line-height: 20px;
    }






    /*교육신청서*/
    .pop_request_box {
        width: calc(100% - 380px);
        max-width: 520px;
        padding: 50px 170px;
        border-radius: 17px;
    }

    p.pop_request_title {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 59px;
    }

    .pop_request_inner {
        max-height: calc(100vh - 400px);
        padding-right: 80px;
    }

    .pop_request_row select {
        padding: 10px 20px 10px 16px;
        background: url('/img/icon/pop_select_dw_bk.svg') no-repeat #F1F4F8 calc(100% - 20px) 50%/24px auto;
    }

    .pop_request_row select+select {
        margin: 0 0 0 10px;
    }

    p.pop_request_info {
        max-width: none;
    }

    .pop_request_btn_search {
        min-width: 140px;
        width: 140px;
        max-width: 140px;
        margin: 0;
    }

    .pop_request_row .display_flex+.pop_request_input,
    .pop_request_row .pop_request_input+.pop_request_input {
        margin: 10px 0 0 0;
    }

    p.pop_request_email {
        margin: 0 7px;
    }

    .pop_request_pop_btn {
        min-width: 150px;
        width: 150px;
        height: 44px;
    }

    .pop_request_row .display_flex .pop_request_input {
        width: calc(100% - 150px);
        margin-right: 10px;
    }

    /*교육신청확인2*/
    .pop_request_whole3 .pop_request_box {
        width: calc(100% - 244px);
        max-width: 256px;
        padding: 46px 122px 40px 122px;
    }

    .pop_request_whole3 .pop_request_box p.pop_request_txt {
        font-size: 16px;
        line-height: 24px;
    }

    .pop_request3_inner {
        width: calc(100% - 68px);
        height: auto;
        padding: 30px 34px;
        margin: 0 auto 50px auto;
    }






    /* 독서활동매니지먼트 자격증 */
    .certificate_popup_box {
        padding: 80px 48px 60px;
        height: calc(100% - 80px);
        max-height: 1136px;
    }

    .teach_delete_or {
        min-width: 40px;
        width: 40px;
        height: 40px;
        top: 48px;
        right: 48px;
    }

    .teach_delete_or img {
        width: 100%;
        top: 0;
        right: 0;
    }

    .certificate_inner {
        padding: 60px;
        height: calc(100% - 250px);
    }

    .certificate_content .inner_title {
        margin-bottom: 40px;
    }

    .certificate_content .title_icon {
        width: 34px;
        height: 34px;
        margin-right: 16px;
    }

    .certificate_content p.title {
        font-size: 36px;
    }

    .certificate_content .certificate_img {
        width: 154px;
        height: 216px;
    }

    .certificate_img_box {
        display: flex;
        align-items: flex-start;
    }

    .certificate_img_box .content_text {
        margin-left: 60px;
    }

    .certificate_content .quotation_icon {
        width: 60px;
        height: 60px;
        margin: 0 0 16px 0;
    }

    .certificate_content .content_text p {
        font-size: 24px;
    }

    .certificate_content+.certificate_content {
        margin-top: 40px;
    }

    .certificate_tables_1 {
        display: flex;
        align-items: stretch;
    }

    .certificate_content:nth-child(2) .inner_title {
        margin-bottom: 20px;
    }

    .certificat_table_content .table_title {
        width: auto;
        min-height: 48px;
        border-bottom: 1px solid #FEA800;
    }

    .certificate_tables_1>div:nth-child(1) {
        min-width: 154px;
        width: 154px;
    }

    .certificate_tables_1>div:nth-child(2) {
        min-width: 98px;
        width: 98px;
    }

    .certificate_tables_1>div:nth-child(3) {
        width: 100%;
    }

    .certificat_table_content,
    .certificat_table_content .table_text.display_flex {
        flex-direction: column;
        border-bottom: none;
        font-size: 16px;
    }

    .certificat_table_content .table_title p {
        writing-mode: horizontal-tb;
        font-size: 16px;
    }

    .certificat_table_content .table_text {
        height: 100%;
        border-right: 1px solid #FEA800;
    }

    .certificat_table_content:first-child .table_text p {
        width: 74px;
    }

    .certificate_tables_1 .certificat_table_content:last-child .table_text {
        border-right: none;
    }

    .certificat_table_content .table_text div {
        width: 100%;
    }

    .certificat_table_content .table_text div:nth-child(1) {
        border-right: 0;
        border-bottom: 1px solid #FEA800;
    }

    .certificat_table_content:nth-child(3) .table_text div {
        min-height: 0;
        padding: 16px 20px 16px 36px;
        width: calc(100% - 56px);
        height: calc(50% - 32px);
        font-size: 16px;
    }

    .certificat_table_content:nth-child(3) .table_text p::after {
        width: 8px;
        height: 8px;
        border-radius: 4px;
        left: -16px;
        top: 8px;
    }

    .certificate_content p.sub_text {
        font-size: 24px;
    }

    .certificate_tables table {
        font-size: 16px;
    }

    .certificate_tables table th,
    .certificate_tables table td {
        padding: 12px 20px;
    }

    .certificate_list_box p.list_box_title {
        margin: 40px 0;
        font-size: 20px;
    }

    .certificate_inner {
        font-size: 18px;
    }

    .certificate_list {
        padding-left: 40px;
    }

    .certificate_list p {
        margin-bottom: 10px;
    }

    .certificate_list p::after {
        width: 14px;
        height: 12px;
        left: -22px;
        top: 8px;
    }




    /*지원신청완료*/
    .certificate_confirm_popup .pop_support_box {
        width: calc(100% - 106px);
        max-width: 256px;
        padding: 46px 122px 40px 122px;
    }

    .certificate_confirm_popup p.pop_support_title {
        margin-bottom: 35px;
    }

    .certificate_confirm_popup .pop_support_inner {
        width: calc(100% - 68px);
        padding: 30px 34px;
    }

    .certificate_confirm_popup .pop_support_inner p {
        font-size: 14px;
        line-height: 20px;
    }



    /* 후기 자세히보기 팝업 */
    .postscript_detail_inner {
        display: flex;
        align-items: flex-start;
    }

    .postscript_detail_img {
        min-width: 400px;
        margin: 0 30px 0 0;
    }

    .postscript_detail_text_box {
        margin-top: 20px;
    }

    .postscript_detail_popup p.reading_review_content {
        font-size: 16px;
    }

    .postscript_detail_popup .teach_delete_or {
        top: 20px;
        right: 20px;
    }

    .reading_review_content_box {
        max-height: 360px;
    }





    /* 광고 팝업 */
    .advertisement_popup.advertisement_1 {
        z-index: 999;
    }

    .advertisement_bg.advertisement_1 {
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 997;
    }

    .advertisement_popup.advertisement_1 {
        position: absolute;
        width: 828px;
        top: 111.672px;
        left: 50%;
        margin-left: -414px;
    }

    .advertisement_box {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: fit-content;
        margin: 0 auto;
        /** min-width: 520px; **/
    }

    .advertisement_box+.advertisement_box {
        margin-top: 20px;
    }

    .advertisement_box a {
        display: block;
        width: 100%;
        height: 39.4531vw;
        max-height: 534px;
    }

    .advertisement_box a+a {
        margin-left: 20px;
    }

    .advertisement_box a img {
        width: 404px;
        height: 100%;
        object-fit: cover;
    }

    button.advertisement_close {
        position: absolute;
        display: block;
        top: -45px;
        right: 0;
        width: 30px;
        height: 30px;
        background: none;
        text-indent: -99999px;
        z-index: 999;
    }

    button.advertisement_close::before {
        display: block;
        content: '';
        position: absolute;
        height: 37px;
        border-left: 1px solid #ccc;
        top: 0;
        right: 14px;
        transform: rotate(-45deg);
    }

    button.advertisement_close::after {
        display: block;
        content: '';
        position: absolute;
        height: 37px;
        border-left: 1px solid #ccc;
        top: 0;
        right: 14px;
        transform: rotate(45deg);
    }

    .advertisement_cookie {
        margin-top: 8px;
    }

    label.cookie_label {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    input[class="cookie_input"]+span {
        display: block;
        width: 18px;
        height: 18px;
        margin-right: 18px;
        border: 1px solid #fff;
    }

    input[class="cookie_input"]+span+span {
        color: #fff;
    }


}