/* *******************************************************
 * filename : common.css
 * description : 기본 레이아웃 및 컨텐츠 CSS
 * date : 2023-06-10
******************************************************** */

/* layout */
/*=======================================================================================*/

html {
    height: 100%;
    width: 100%;
    min-width: 1280px;
}
body {
    width: 100%;
    height: 100%;
    background-color: #fff;
}
#app {
    width: 100%;
    height: 100%;
}

#wrap {
    width: 100%;
    height: 100%;
}
#header {
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 9;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    min-width: 1280px;
}
.scroll_fixed {
    overflow: hidden;
}

/* scrollbar  */
/*=======================================================================================*/

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
*::-webkit-scrollbar-thumb {
    background-color: #b3aba4;
    border-radius: 1px;
}
*::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
}

/* button setting  */
/*=======================================================================================*/

.btn {
    text-align: center;
    box-sizing: border-box;
    position: relative;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.btn:active {
    -webkit-box-shadow: 0 0 5px inset rgba(10, 55, 94, 0.1);
    -moz-box-shadow: 0 0 5px inset rgba(10, 55, 94, 0.1);
    -ms-box-shadow: 0 0 5px inset rgba(10, 55, 94, 0.1);
    -o-box-shadow: 0 0 5px inset rgba(10, 55, 94, 0.1);
    box-shadow: 0 0 5px inset rgba(10, 55, 94, 0.1);
    transform: translateY(1px) scale(0.98);
}
.btn:active::before {
    opacity: 1;
}
.btn:disabled:active {
    transform: none;
}

/* button color  */
/*=======================================================================================*/

.color_charcoal {
    background: linear-gradient(217deg, #5d646b, #5b5e63);
    color: #fff;
}
.color_brightgray {
    background: #eff0f2;
    border: 1px solid #bec2c5;
}
.color_brightgray2 {
    background: linear-gradient(217deg, #d5dade, #b9c6c8);
    color: #fff;
}
.color_red {
    background: linear-gradient(217deg, #f50a42, #cf0233);
    color: #fff;
}
.color_yellow {
    background: #ffc500;
}
.color_green {
    background: #239c84;
    color: #fff;
}
.color_blue {
    background: linear-gradient(217deg, #168eea, #16cdea);
    color: #fff;
}
.color_orange {
    background: linear-gradient(217deg, #e25c17, #ee8712);
    color: #fff;
}
.color_white {
    background: #f6f8fb;
    border: 2px solid #d5d9df;
    color: #67757e;
}

/* font color  */
/*=======================================================================================*/

.t_blue {
    color: #168eea;
}
.t_red {
    color: #e61d1c;
}

/* header  */
/*=======================================================================================*/
.header_inner {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.header_inner .logo {
    font-size: 15px;
    letter-spacing: -0.5px;
}
.header_inner .logo span {
    font-weight: 600;
}
.header_inner .contact i {
    font-size: 12px;
    color: #646464;
}
.header_inner .contact .txt {
    display: inline-block;
    font-size: 13px;
    margin-right: 5px;
}
.header_inner .contact .call {
    display: inline-block;
    border: 1px solid #cedde2;
    border-radius: 4px;
    padding: 4px 10px 2px;
}
/* profile */
.header_inner .profile_wrap {
    display: flex;
    align-items: center;
}
.header_inner .profile_wrap .profile {
    margin-right: 20px;
    position: relative;
}
.header_inner .profile_wrap .profile .img {
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    overflow: hidden;
    margin-right: 5px;
    background: #e2e2e2;
}
.header_inner .profile_wrap .profile .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.header_inner .profile_wrap .profile .txt {
    display: inline-block;
    vertical-align: middle;
}
.header_inner .profile_wrap .mail {
    margin-right: 20px;
}
.header_inner .profile_wrap .mail i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    font-size: 15px;
}
.header_inner .profile_wrap .mail span {
    display: inline-block;
    vertical-align: middle;
    font-family: "Poppins", sans-serif;
}
.header_inner .profile_wrap .btn_wrap {
    font-size: 0;
    line-height: 0;
}
.header_inner .profile_wrap .btn_wrap .btn {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    box-sizing: border-box;
    padding: 0 15px;
    border-radius: 6px;
    font-size: 12px;
}

/* container */
/*=======================================================================================*/
.container {
    padding-top: 50px;
    height: 100%;
    background: #f6f8fb;
    display: flex;
}

/* menu */
/*=======================================================================================*/
.menu {
    width: 200px;
    height: 100%;
    overflow-y: auto;
    background: url(../images/BG_MENU.png) no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
}
.menu > ul {
    padding-top: 20px;
}
.menu > ul > li {
    color: #fff;
    font-size: 18px;
}
.menu > ul > li > a {
    display: block;
    color: #fff;
    padding: 15px 15px;
    font-size: 14px;
    box-sizing: border-box;
}
.menu > ul > li.active > a {
    background: rgba(0, 0, 0, 0.2);
}
.menu > ul > li > a:active {
    transform: translateY(1px) scale(0.99);
}
.menu > ul > li > a > i {
    margin-right: 5px;
}

/* ic_new */
.ic_new {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    line-height: 16px;
    color: #fff;
    background: #e61e19;
    font-weight: 500;
    border-radius: 50%;
    margin-left: 5px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
}
.menu_bottom_txt {
    text-align: center;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

/* tab */
/*=======================================================================================*/
.tabs {
    display: flex;
    cursor: pointer;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* basic_form_element_wrap */
/*=======================================================================================*/

.require::after {
    display: inline-block;
    vertical-align: middle;
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
    content: "\f621";
    color: #e2065e;
    padding-left: 3px;
    font-size: 10px;
}

/* form_cont */
.form_cont_wrap {
    display: flex;
    align-items: center;
}
.form_cont_wrap > label {
    display: block;
    min-width: 150px;
    line-height: 1.2;
    font-weight: 500;
    position: relative;
}
.form_cont_wrap > .form_cont {
    flex: 1;
}
.form_cont_wrap > .form_cont.end {
    display: flex;
    justify-content: end;
}
.form_cont.flex-line {
    display: flex;
    gap: 5px;
}
.form_cont.flex-line > div {
    flex: 1;
}

.form_element_wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 36px;
}
.form_element_wrap .word {
    padding: 0 5px;
}

/* input */
.form_element_wrap .form_input {
    height: 36px;
    border: 1px solid #d2cecc;
    border-radius: 4px;
    background: #fff;
    padding: 0 15px;
    box-sizing: border-box;
    flex: 1;
}
.form_element_wrap .form_input::placeholder {
    color: #bbb3b0;
}
.form_element_wrap .form_input:read-only {
    background: #f9f7f6;
}
.form_element_wrap .validation_check_alram {
    border: 2px solid #e8352c;
}
.form_element_wrap .btn {
    height: 36px;
    line-height: 36px;
    border-radius: 4px;
    padding: 0 15px;
}

/* select */
.form_element_wrap .form_select {
    height: 36px;
    border: 1px solid #d2cecc;
    border-radius: 4px;
    background: #fff;
    padding: 0 10px;
    box-sizing: border-box;
    flex: 1;
}
.form_element_wrap .form_select:required:invalid {
    color: #bbb3b0;
}
.form_element_wrap .form_select option {
    color: #2b2c30;
}
.form_element_wrap .form_select option[value=""][disabled] {
    display: none;
}
.form_element_wrap.chk_alarm select {
    border: 2px solid #e8352c;
}

/* select - images */
.form_selectImg_wrap {
    position: relative;
}
.form_selectImg_wrap .form_selectImg {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    border: 1px solid #d2cecc;
    border-radius: 4px;
    background: #fff;
    padding: 0 10px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 1.1;
    cursor: default;
}
.form_selectImg_wrap .form_selectImg::after {
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
    content: "\f107";
    font-size: 12px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.form_selectImg_wrap .hide {
    display: none;
}
.form_selectImg_wrap .show {
    display: block;
}
.form_selectImg_wrap .option_list {
    width: 100%;
    position: absolute;
    top: 36px;
    border: 1px solid #d2cecc;
    border-radius: 10px;
    background: #fff;
    z-index: 3;
    box-sizing: border-box;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    overflow-y: auto;
    max-height: 200px;
}
.form_selectImg_wrap .option_list li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 6px;
    line-height: 1.1;
    cursor: default;
}
.form_selectImg_wrap .option_list li:hover {
    color: #fff;
    background: #1967d2;
}

/* textarea */
.form_element_wrap > label {
    display: block;
    min-width: 150px;
    line-height: 1.2;
}
.form_element_wrap .form_textarea {
    flex: 1;
    border: 1px solid #cedde2;
    border-radius: 2px;
    background: #fff;
    padding: 10px 15px;
    box-sizing: border-box;
}
.form_element_wrap .form_textarea:read-only {
    background: #f2f2f2;
}
.form_element_wrap .form_textarea::placeholder {
    color: #bbb3b0;
}
.form_element_wrap.chk_alarm textarea {
    border: 2px solid #e8352c;
}

/* password_show */
.form_element_wrap i.btn_pwShow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #6b5c58;
    cursor: pointer;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}
.form_element_wrap:has(.btn_pwShow) {
    gap: 0;
}

/* validation_check_massage */
.validation_check_massage {
    position: absolute;
    right: 0;
    top: -28px;
    z-index: 99;
    background: #e8352c;
    font-size: 11px;
    color: #fff;
    padding: 3px 10px;
    border-radius: 8px;
}
.validation_check_massage:after {
    border-top: 8px solid #e8352c;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    top: 19px;
    right: 20px;
}

/* input_radio - 기본형 */
/*=======================================================================================*/
.input_radio {
    position: relative;
    display: inline-block;
}
.input_radio input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.input_radio input[type="radio"] + label {
    display: inline-block;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.input_radio input[type="radio"] + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    background: #fafafa;
    border: 1px solid #726963;
    border-radius: 8px;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.input_radio input[type="radio"] + label:active:before,
.input_radio input[type="radio"]:checked + label:active:before {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.input_radio input[type="radio"]:checked + label:before {
    background: #e9ecee;
}
.input_radio input[type="radio"]:checked + label:after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    left: 4px;
    width: 10px;
    height: 10px;
    background: #f30334;
    border-radius: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.radio_layerform {
    flex-wrap: wrap;
    gap: 15px 0;
}
.radio_layerform .input_radio {
    flex: 1 1 20%;
    text-align: center;
}
.radio_layerform .input_radio input[type="radio"] + label {
    padding: 26px 0 0 0;
}
.radio_layerform .input_radio input[type="radio"] + label:before {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
}
.radio_layerform .input_radio input[type="radio"]:checked + label:after {
    top: 4px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
}
.radio_layerform .input_radio label em {
    display: block;
}
.radio_layerform .input_radio label em .ic_layform {
    width: 45px;
    margin-bottom: 6px;
}
.radio_layerform .input_radio label em .txt {
    text-align: center;
    line-height: 1.1;
}

/* input_radio_button - 버튼형 */
/*=======================================================================================*/
.form_radio_button_wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.input_radio_button {
    display: block;
}
.input_radio_button input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.input_radio_button input[type="radio"] + label {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #ffffff;
    height: 36px;
    text-align: center;
    border: 1px solid #bccacf;
    box-sizing: border-box;
    min-width: 100px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.input_radio_button:first-child input[type="radio"] + label {
    border-radius: 6px 0 0 6px;
}
.input_radio_button:last-child input[type="radio"] + label {
    border-radius: 0 6px 6px 0;
}

.input_radio_button input[type="radio"]:checked + label {
    background: #5c6167;
    border: 1px solid #5c6167;
    color: #fff;
}

/* input_check - 기본형 */
/*=======================================================================================*/
.input_checks {
    display: inline-block;
    vertical-align: middle;
}
.input_checks input {
    display: none;
}
.input_checks label {
    display: block;
    cursor: pointer;
}
.input_checks label em {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.input_checks label em::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../images/CHECK_OFF.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.input_checks input:checked ~ label em::before {
    background: url(../images/CHECK_ON.png) no-repeat;
    background-size: 100% 100%;
}
.input_checks label span {
    display: inline-block;
    vertical-align: middle;
}

/* input_check_toggle - 토글형 */
/*=======================================================================================*/
.input_check_toggle {
    display: inline-block;
}
.input_check_toggle input {
    display: none;
}
.input_check_toggle label {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    width: 60px;
    height: 26px;
    border-radius: 14px;
    background: #de3a5b;
    position: relative;
    box-shadow: 0 0 6px inset rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.input_check_toggle label::before,
.input_check_toggle label::after {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.input_check_toggle label::before {
    content: "OFF";
    left: 7px;
}
.input_check_toggle label::after {
    content: "ON";
    left: 17px;
    opacity: 0;
}

.input_check_toggle label em {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.input_check_toggle input:checked ~ label em {
    left: 4px;
}
.input_check_toggle input:checked ~ label {
    background: #67b717;
}
.input_check_toggle input:checked ~ label::before {
    opacity: 0;
    left: 18px;
}
.input_check_toggle input:checked ~ label::after {
    opacity: 1;
    left: 29px;
}

/* page_title */
/*=======================================================================================*/
.page_title {
    padding: 20px 20px 0;
    min-height: 65px;
    position: relative;
}
.page_title h2 {
    display: inline-block;
    vertical-align: text-bottom;
    font-size: 30px;
    font-weight: 600;
    margin-right: 10px;
}
.page_title span {
    display: inline-block;
    vertical-align: text-bottom;
    font-size: 14px;
    color: #9c908e;
    padding-bottom: 3px;
}

/* contents_wrap */
/*=======================================================================================*/
.contents_wrap {
    background: #f4f8fc;
    position: relative;
    flex: 1;
    height: 100%;
    padding: 0;
    overflow-y: auto;
}
.contents {
    padding: 10px 20px 20px;
    height: calc(100% - 66px);
}
.contents.type2 {
    display: flex;
    padding: 0;
    height: calc(100% - 66px);
}
.contents.type2 .side {
    background: #f9f7f6;
    border-right: 1px solid #d1cdcb;
    box-sizing: border-box;
    width: 290px;
}
.contents.type2 .content {
    flex: 1;
    overflow-y: auto;
}
.contents.type2 .content.today {
    padding-right: 200px;
}

/* layer_pop_wrap */
/*=======================================================================================*/
.bg_overay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.layer_pop_wrap {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 92;
    background: #fff;
    border-radius: 6px;
}
.layer_pop_wrap.w700 {
    min-width: 700px;
}
.layer_pop_wrap.w800 {
    min-width: 800px;
}
.layer_pop_wrap.w900 {
    min-width: 900px;
}
.layer_pop_wrap.w1000 {
    min-width: 1000px;
}
.layer_pop_wrap .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #169cea;
    border-radius: 6px 6px 0 0;
    height: 46px;
    padding: 0 20px;
}
.layer_pop_wrap .title h3 {
    color: #fff;
    font-size: 16px;
}
.layer_pop_wrap .cont > .row {
    display: flex;
    border-bottom: 1px solid #e3dedc;
    box-sizing: border-box;
}
.layer_pop_wrap .cont > .row > .column {
    padding: 10px 20px;
    flex: 1;
}

.layer_pop_wrap .bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 0;
}
.layer_pop_wrap .bottom .btn {
    height: 36px;
    line-height: 35px;
    border-radius: 6px;
    padding: 0 20px;
    min-width: 100px;
}

/* ic_layform */
/*=======================================================================================*/
.ic_layform {
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #726963;
    box-sizing: content-box;
    position: relative;
    width: 26px;
    aspect-ratio: 1/1;
}

/* H12 */
.ic_layform.H12::after {
    content: "";
    width: 2px;
    height: 100%;
    background: #726963;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* H1234 */
.ic_layform.H1234::before {
    content: "";
    width: 2px;
    height: 100%;
    background: #726963;
    position: absolute;
    left: 24%;
    top: 0;
    transform: translateX(-50%);
}
.ic_layform.H1234::after {
    content: "";
    width: 2px;
    height: 100%;
    background: #726963;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.ic_layform.H1234 span::before {
    content: "";
    width: 2px;
    height: 100%;
    background: #726963;
    position: absolute;
    left: 74%;
    top: 0;
    transform: translateX(-50%);
}

/* V12 */
.ic_layform.V12::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #726963;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* V1234 */
.ic_layform.V1234::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #726963;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.ic_layform.V1234::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #726963;
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
}
.ic_layform.V1234 span::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #726963;
    position: absolute;
    left: 0;
    top: 75%;
    transform: translateY(-50%);
}

/* free */
.ic_layform.free::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #726963;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.ic_layform.free::after {
    content: "";
    width: 2px;
    height: 50%;
    background: #726963;
    position: absolute;
    left: 30%;
    top: 0;
}
.ic_layform.free span::after {
    content: "";
    width: 2px;
    height: 50%;
    background: #726963;
    position: absolute;
    left: 70%;
    top: 50%;
}
