/* *******************************************************
 * filename : common.css
 * description : 기본 레이아웃 및 컨텐츠 CSS
 * date : 2025-02-12
******************************************************** */

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

html {
    height: 100%;
    width: 100%;
    min-width: 1280px;
}

body {
    width: 100%;
    height: 100%;
    background-color: #fff;
}

#app {
    width: 100%;
    height: 100%;
}

#app {
    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;
}


/* 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;
}

.color_black {
    background: #333333;
    color: #fff;
}

/* 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;
}

.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.jpg) 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 {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.menu>ul>li.active>a::before {
    content: "";
    width: 3px;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffc500;
    position: absolute;
}

.menu>ul>li>a:active {
    transform: translateY(1px) scale(0.99);
}

.menu>ul>li>a>i {
    margin-right: 5px;
}

.menu .dapth2 {
    background: rgba(255, 255, 255, 0.1);
}

.menu .dapth2 li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.menu .dapth2 li:last-child {
    border-bottom: none;
}

.menu .dapth2 li.active a {
    color: #ffc500;
}

.menu .dapth2 li a {
    display: block;
    color: #fff;
    font-size: 14px;
    padding: 10px 0 10px 34px;
    position: relative;
}

.menu .dapth2 li a::before {
    content: "└";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #838383;
}

/* 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: 200px;
    line-height: 1.2;
    font-weight: 500;
    position: relative;
}

.form_cont_wrap>.form_cont {
    flex: 1;
}

/* form_element_wrap */
.form_element_wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    width: auto;
    min-width: 60%;
}

.form_element_wrap.widthFull {
    min-width: calc(100% - 238px);
}

/* 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>span {
    padding: 0 10px;
}

.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;
}

.form_element_wrap .btn.min-w100 {
    min-width: 100px;
}

/* 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:disabled {
    background: #f2f2f2;
}

.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;
}

/* textarea */
.form_element_wrap>label {
    display: block;
    min-width: 150px;
    line-height: 1.2;
}

.form_element_wrap .form_textarea {
    flex: 1;
    border: 1px solid #d2cecc;
    border-radius: 4px;
    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;
}

/* form_viewBox */
.form_element_wrap .form_viewBox {
    min-height: 36px;
    line-height: 1.4;
    border-radius: 4px;
    background: #fafafa;
    padding: 9px 15px;
    box-sizing: border-box;
    flex: 1;
    box-shadow: 0 0 6px inset rgba(0, 0, 0, 0.06);
}

.form_element_wrap .form_viewBox span {
    display: inline-block;
    vertical-align: middle;
    background: #333333;
    color: #fff;
    line-height: 24px;
    padding: 0 10px;
    border-radius: 10px;
    margin-right: 10px;
}

.form_element_wrap .form_viewBox img {
    max-height: 150px;
    width: auto;
}

.form_element_wrap .form_viewBox a {
    color: #168eea;
    text-decoration: underline;
}

/* form_upload_wrap */
.upload_txt {
    margin-bottom: 5px;
}

.form_upload_wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    width: 60%;
}

.form_upload_wrap.widthFull {
    width: 100%;
}

.form_upload_wrap .form_input {
    height: 36px;
    border: 1px solid #d2cecc;
    border-radius: 4px;
    background: #fff;
    padding: 0 15px;
    box-sizing: border-box;
    flex: 1;
}

.form_upload_wrap input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form_upload_wrap label {
    cursor: pointer;
}

.form_upload_wrap .btn {
    height: 36px;
    line-height: 36px;
    border-radius: 4px;
    padding: 0 15px;
    white-space: nowrap;
}

.form_upload_wrap .upload_preview {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form_upload_wrap .upload_preview a {
    text-decoration: underline;
    color: #168eea;
}

.form_element_wrap .w100 {
    width: 100px;
}


/* 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%);
}


/* 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.w500 {
    min-width: 500px;
}

.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.w1200 {
    min-width: 1200px;
}

.layer_pop_wrap.w1400 {
    min-width: 1400px;
}

.layer_pop_wrap.w1600 {
    min-width: 1600px;
}

.layer_pop_wrap.w1800 {
    min-width: 1800px;
}

.layer_pop_wrap .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1a1a1a;
    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 .top_desc {
    padding: 10px 20px;
}

.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 */
/*=======================================================================================*/
.layout_type {
    text-align: center;
}

.layout_type i {
    margin-bottom: 5px;
}

.layout_type em {
    display: block;
    text-align: center;
    font-size: 12px;
}

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

.ic_layform::before,
.ic_layform::after {
    content: "";
    background: #726963;
    position: absolute;
}

.ic_layform::before {
    height: 2px;
    transform: translateY(-50%);
}

.ic_layform::after {
    width: 2px;
    transform: translateX(-50%);
}

/* 가로 Hx1x0 */
.ic_layform.Hx1x0::before {
    display: none;
}

.ic_layform.Hx1x0::after {
    display: none;
}

/* 가로 Hx1x1 */
.ic_layform.Hx1x1::before {
    display: none;
}

.ic_layform.Hx1x1::after {
    left: 50%;
    top: 0;
    height: 100%;
}

/* 가로 Hx1x2 */
.ic_layform.Hx1x2::before {
    left: 50%;
    top: 50%;
    width: 50%;
}

.ic_layform.Hx1x2::after {
    left: 50%;
    top: 0;
    height: 100%;
}

/* 가로 Hx2x1 */
.ic_layform.Hx2x1::before {
    left: 0;
    top: 50%;
    width: 50%;
}

.ic_layform.Hx2x1::after {
    left: 50%;
    top: 0;
    height: 100%;
}

/* 가로 Hx3x0 */
.ic_layform.Hx3x0::before {
    left: 66.6%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateY(0) translateX(-50%);
}

.ic_layform.Hx3x0::after {
    left: 33.3%;
    top: 0;
    height: 100%;
}

/* 가로 Vx1x1 */
.ic_layform.Vx1x1::before {
    left: 0;
    top: 50%;
    width: 100%;
}

.ic_layform.Vx1x1::after {
    display: none;
}

/* 가로 Vx1x2 */
.ic_layform.Vx1x2::before {
    left: 0;
    top: 50%;
    width: 100%;
}

.ic_layform.Vx1x2::after {
    left: 50%;
    top: 50%;
    height: 50%;
}

/* 가로 Vx2x1 */
.ic_layform.Vx2x1::before {
    left: 0;
    top: 50%;
    width: 100%;
}

.ic_layform.Vx2x1::after {
    left: 50%;
    top: 0;
    height: 50%;
}

/* 가로 Vx2x2 */
.ic_layform.Vx2x2::before {
    left: 0;
    top: 50%;
    width: 100%;
}

.ic_layform.Vx2x2::after {
    left: 50%;
    top: 0;
    height: 100%;
}