/* *******************************************************
 * filename : common.css
 * description : 기본 레이아웃 및 컨텐츠 CSS
 * date : 2024-10-3
******************************************************** */

/* layout */
/*=======================================================================================*/

html {
    height: 100%;
    width: 100%;
    min-width: 280px;
}

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;
    border-bottom: 1px solid #e3dedc;
    box-sizing: border-box;
}

.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;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    box-sizing: border-box;
    white-space: nowrap;
}

.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);
}

/* button color  */
/*=======================================================================================*/

.color_charcoal {
    background: #5d656b;
    border: 1px solid #4a5157;
    color: #fff;
}

.color_charcoal:active {
    background: #444750;
    border: 1px solid #2e3238;
}

.color_brightgray {
    background: #f2f0ef;
    border: 1px solid #c5bfbe;
}

.color_brightgray:active {
    background: #e4e1df;
}

.color_red {
    background: #e2065e;
    border: 1px solid #d20155;
    color: #fff;
}

.color_red:active {
    background: #d60458;
}

.color_yellow {
    background: #ffc500;
}

.color_yellow:active {
    background: #e2ad00;
}

.color_green {
    background: #239c84;
    border: 1px solid #1a8f78;
    color: #fff;
}

.color_green:active {
    background: #1e8a74;
}

.color_blue {
    background: #168eea;
    border: 1px solid #1487df;
    color: #fff;
}

.color_blue:active {
    background: #1580d1;
}

.color_orange {
    background: linear-gradient(217deg, #e25c17, #ee8712);
    border: 1px solid rgba(226, 92, 23, 0.5);
    color: #fff;
}

.color_orange:active {
    filter: brightness(0.9);
}

.color_white {
    background: #fbf6f7;
    border: 2px solid #d5d7df;
    color: #1580d1;
}

.color_white:active {
    background: #ebe5e6;
    border: 2px solid #ccc3c2;
}

/* 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: 10px;
    padding-right: 10px;
    position: relative;
}

.header_inner .profile_wrap .profile::after {
    content: "";
    width: 1px;
    height: 14px;
    background: #ccc7c7;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.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: 11px;
    font-size: 12px;
}

/* container */
/*=======================================================================================*/
.container {
    padding-top: 50px;
    height: 100%;
    background: #f6f8fb;
    display: flex;
}

/* page_bottom */
.page_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #918780;
    padding-top: 10px;
    margin-top: 15px;
}

.page_bottom .btn {
    height: 36px;
    border-radius: 16px;
    padding: 0 20px;
    min-width: 120px;
}

/* menu */
/*=======================================================================================*/
.menu {
    width: 200px;
    height: 100%;
    overflow-y: auto;
    background: url(../images/BG_MAIN.png) no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
}

.menu>.top {
    padding: 15px;
}

.menu>.top>.btn_home {
    display: block;
    height: 50px;
    line-height: 46px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    position: relative;
}

.menu>.top>.btn_home::before {
    content: "";
    background: rgba(255, 255, 255, 0.03);
    position: absolute;
    left: 50%;
    top: 3px;
    transform: translateX(-50%);
    width: calc(100% - 10px);
    height: 20px;
    border-radius: 6px;
}

.menu>.top>.btn_home i {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}

.menu>.top>.btn_home span {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-family: "Poppins", sans-serif;
    line-height: 1.4;
    font-weight: 400;
    font-size: 14px;
}


.menu>ul>li {
    color: #fff;
    font-size: 18px;
}

.menu>ul>li>a {
    display: block;
    color: #fff;
    padding: 20px 15px;
    font-size: 14px;
    box-sizing: border-box;
}

.menu>ul>li.active>a {
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #168eea;
}

.menu>ul>li>a:active {
    transform: translateY(1px) scale(0.99);
}

.menu>ul>li>a>i {
    margin-right: 5px;
}

.menu .depth_2 {
    padding: 0 0 5px;
    position: relative;
}

.menu .depth_2::before {
    content: "";
    width: 2px;
    height: calc(100% - 27px);
    background: #6e6660;
    position: absolute;
    left: 25px;
    top: 0;
}

.menu .depth_2>li.active a {
    color: #00c3ff;
}

.menu>ul>li:has(.depth_2>li.active)>a {
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #168eea;
}

.menu .depth_2>li:last-child {
    border-bottom: none;
}

.menu .depth_2>li>a {
    display: block;
    color: #fff;
    font-size: 14px;
    padding: 10px 15px 10px 45px;
    position: relative;
}

.menu .depth_2>li>a::after {
    content: "";
    width: 10px;
    height: 2px;
    background: #6e6660;
    position: absolute;
    left: 25px;
    top: 16px;
}

.menu .depth_2>li>a:active {
    transform: translateY(1px) scale(0.99);
}

/* 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;
}

/* h_scroll */
/*=======================================================================================*/
#h_scroll {
    overflow-x: auto;
}

.hidden {
    display: none;
}

/* tab */
/*=======================================================================================*/
.tab_cont_wrap {
    position: relative;
}

.tab_cont {
    display: none;
}

.tab_cont.on {
    display: block;
}

/* from_bundle_wrap */
/*=======================================================================================*/
.from_bundle_wrap.bottom-line {
    border-bottom: 2px solid #e6e3e1;
    padding-bottom: 10px;
}

.from_bundle_wrap.box-line {
    border: 2px solid #e6e3e1;
    padding: 20px;
    background: #f9f7f6;
}

.from_bundle_wrap>.row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.from_bundle_wrap>.row:last-child {
    margin-bottom: 0;
}

.from_bundle_wrap>.row>.column {
    flex: 1;
}

/* 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;
    min-height: 36px;
}

.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>.desc {
    padding-top: 10px;
}



/* form_element_wrap */
.form_element_wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 400px;
    min-width: 340px;
}

.form_element_wrap>label {
    display: block;
    min-width: 150px;
    line-height: 1.2;
}

/* input */
.form_element_wrap .form_input {
    height: 36px;
    border: 1px solid #d2cecc;
    border-radius: 4px;
    background: #fff;
    padding: 0 15px;
    box-sizing: border-box;
    width: calc(100% - 30px);
    flex: 1;
}

.form_element_wrap.width-full .form_input {
    width: 100%;
}

.form_element_wrap .form_input::placeholder {
    color: #bbb3b0;
}

.form_element_wrap .form_input:focus,
.form_element_wrap .form_select:focus {
    border-color: #645f5e;
}

.form_element_wrap .form_input:read-only {
    background: #f9f7f6;
}

.form_element_wrap .validation_check_alram {
    border: 1px solid #e8352c;
}

.form_element_wrap .btn {
    height: 36px;
    border-radius: 16px;
    padding: 0 15px;
}

.form_element_wrap.width-max {
    max-width: 100%;
}

/* select */
.form_element_wrap .form_select {
    height: 36px;
    border: 1px solid #d2cecc;
    border-radius: 4px;
    background: #fff;
    padding: 0 10px;
    box-sizing: border-box;
    width: calc(100% - 30px);
    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;
}

/* textarea */
.form_element_wrap:has(.form_textarea) {
    max-width: 100%;
}

.form_element_wrap .form_textarea {
    flex: 1;
    border: 1px solid #cedde2;
    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;
}

/* form_view */
.form_element_wrap .form_view {
    background: #f6f7f9;
    box-shadow: 0 0 15px inset rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 10px 15px;
    flex: 1;
}



/* form-address */
.form-address .form_element_wrap {
    max-width: 80%;
}

/* form_btn_wrap */
.form_btn_wrap .btn {
    height: 36px;
    border-radius: 16px;
    padding: 0 15px;
}

/* form_validation_check */
.form_validation_check {
    color: #e8352c;
    padding-top: 5px;
}

/* input_func */
.input_func {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
}

.input_func>i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    cursor: pointer;
}

.input_func>.txt {
    border-radius: 8px;
    font-size: 12px;
    padding: 3px 8px;
}

.input_func>.txt.red {
    color: #e60c31;
    background: #ffdfdf;
}


/* 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: 16px 0 0 16px;
}

.input_radio_button:last-child input[type="radio"]+label {
    border-radius: 0 16px 16px 0;
}

.input_radio_button input[type="radio"]:checked+label {
    background: #6b615d;
    border: 1px solid #635955;
    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: 18px;
    height: 18px;
    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_color - 컬러 */
/*=======================================================================================*/
.form_color_wrap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.input_color {
    display: block;
    flex-wrap: wrap;
    flex: 1 1 12%;
}

.input_color input {
    display: none;
}

.input_color label {
    display: block;
}

.input_color label em {
    display: block;
    width: 100%;
    height: 40px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 14px;
    border: 2px solid;
    box-sizing: border-box;
}

.input_color label em::before,
.input_color label em::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 0;
    background-color: #fff;
    position: absolute;
    transform-origin: left top;
    border-radius: 1.5px;
}

.input_color label em::before {
    top: 14px;
    left: calc(50% - 12px);
    -webkit-transform: rotate(-45deg) translateX(-50%);
    -moz-transform: rotate(-45deg) translateX(-50%);
    -ms-transform: rotate(-45deg) translateX(-50%);
    -o-transform: rotate(-45deg) translateX(-50%);
    transform: rotate(-45deg) translateX(-50%);
}

.input_color label em::after {
    top: 26px;
    left: calc(50% - 2px);
    -webkit-transform: rotate(-135deg) translateX(-50%);
    -moz-transform: rotate(-135deg) translateX(-50%);
    -ms-transform: rotate(-135deg) translateX(-50%);
    -o-transform: rotate(-135deg) translateX(-50%);
    transform: rotate(-135deg) translateX(-50%);
}

.input_color input:checked~label em {
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.input_color input:checked~label em::before {
    height: 16px;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.input_color input:checked~label em::after {
    height: 20px;
    -webkit-transition: all 0.35s ease 0.35s;
    -moz-transition: all 0.35s ease 0.35s;
    -o-transition: all 0.35s ease 0.35s;
    transition: all 0.35s ease 0.35s;
}

.input_color label em.color_01::before,
.input_color label em.color_01::after {
    background: #ec133f;
}

.input_color label em.color_01 {
    background: #fff;
    border-color: #cbcbcb;
}

.input_color label em.color_02 {
    background: #000000;
    border-color: #606060;
}

.input_color label em.color_03 {
    background: #4f81bd;
    border-color: #3669a5;
}

.input_color label em.color_04 {
    background: #c0504d;
    border-color: #a43835;
}

.input_color label em.color_05 {
    background: #9bbb59;
    border-color: #85a543;
}

.input_color label em.color_06 {
    background: #8064a2;
    border-color: #5c407e;
}

.input_color label em.color_07 {
    background: #4bacc6;
    border-color: #3c94ab;
}

.input_color label em.color_08 {
    background: #00b050;
    border-color: #008a3f;
}

.input_color label em.color_09 {
    background: #7030a0;
    border-color: #531482;
}

.input_color label em.color_10 {
    background: #e46c0a;
    border-color: #cb610a;
}

.input_color label em.color_11 {
    background: #ffc000;
    border-color: #e9b000;
}

.input_color label em.color_12 {
    background: #74bcb4;
    border-color: #5aa49c;
}

.input_color label em.color_13 {
    background: #ff6699;
    border-color: #e64c7f;
}

.input_color label em.color_14 {
    background: #996633;
    border-color: #7d4d1e;
}

/* 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;
}

/* board_view_wrap */
/*=======================================================================================*/
.board_view_wrap {
    position: relative;
}

/* btn_bottom_wrap */
.bottom_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    position: relative;
}

.bottom_wrap .btn {
    height: 36px;
    line-height: 35px;
    border-radius: 16px;
    padding: 0 20px;
    min-width: 120px;
}

.bottom_wrap .pageing_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* page_title */
/*=======================================================================================*/
.page_title {
    border-bottom: 2px solid #918780;
    padding: 10px 20px;
}

.page_title h2 {
    display: inline-block;
    vertical-align: text-bottom;
    font-size: 30px;
    font-weight: 900;
    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: #fff;
    position: relative;
    flex: 1;
    height: 100%;
    padding: 0;
}

.contents {
    padding: 20px;
    height: calc(100vh - 116px);
    overflow-y: auto;
}
.contents.bg_gray {
    background: #f9f7f6;
}

.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;
}

/* file_uploader */
/*=======================================================================================*/
.file_uploader {
    border: 2px solid #d2d6db;
    border-radius: 4px;
    background: #f6f7f9;
}

.file_uploader .button {
    border-bottom: 2px dashed #d2d6db;
    padding: 10px 15px;
}

.file_uploader .button label {
    display: inline-block;
    vertical-align: middle;
    font-size: 11px;
    height: 26px;
    line-height: 25px;
    border-radius: 11px;
    padding: 0 15px;
}

.file_uploader .button span {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    color: #877a77;
    padding-left: 5px;
}

.file_uploader .button input {
    display: none;
}

.file_uploader .file_list {
    padding: 0 15px 10px;
    min-height: 140px;
    position: relative;
}

.file_uploader .file_list::before {
    content: attr(qq-drop-area-text) " ";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #d8ceca;
}

.file_uploader .file_list ul {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0 5px;
    background: #f9f7f6;
    max-width: calc(100vw - 430px);
}

.file_uploader .file_list ul li {
    position: relative;
}

.file_uploader .file_list ul li .btn {
    width: 24px;
    height: 24px;
    line-height: 26px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    right: -4px;
    top: -4px;
    z-index: 3;
}

.file_uploader .file_list ul li .btn i {
    font-size: 17px;
}

.file_uploader .file_list ul li .thumb {
    border-radius: 4px;
    position: relative;
    width: 120px;
    aspect-ratio: 207/167;
    font-size: 0;
    line-height: 0;
    box-sizing: border-box;
    overflow: hidden;
    background: #c8c6c6;
    margin-bottom: 6px;
}

.file_uploader .file_list ul li .thumb::before {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-family: "Font Awesome 6 Sharp";
    font-weight: 500;
    font-size: 30px;
}

.file_uploader .file_list ul li .thumb.img::before {
    content: "\f03e";
}

.file_uploader .file_list ul li .thumb.video::before {
    content: "\f008";
}

.file_uploader .file_list ul li .thumb.txt::before {
    content: "\f570";
}

.file_uploader .file_list ul li .thumb img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: 2;
}

.file_uploader .file_list ul li .txt {
    text-align: center;
    width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* 말줄임 적용 */
}

/* tab_wrap */
/*=======================================================================================*/
.tab_wrap .tab {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid #7c8284;
    margin-bottom: 10px;
}

.tab_wrap .tab_item a {
    display: block;
    height: 34px;
    line-height: 34px;
    background: #f3f1f1;
    box-shadow: 0 0 10px inset rgba(0, 0, 0, 0.06);
    border-radius: 4px 4px 0 0;
    padding: 0 15px;
    color: #a9aeb4;
    min-width: 80px;
    text-align: center;
}

.tab_wrap .tab_item.active a {
    background: #636472;
    color: #fff;
}

.tab_wrap .tab_item.active a i {
    color: #fff;
}

.tab_wrap .tab_content {
    display: none;
}

.tab_wrap .tab_content.active {
    display: block;
}

/* 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.8);
}

.pop_desc {
    background: #f8f8f8;
    box-shadow: 0 0 16px inset rgba(0, 0, 0, 0.06);
    padding: 15px;
    margin-bottom: 10px;
    line-height: 1.5;
    border-radius: 10px;
}

.pop_desc ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.pop_desc ol li {
    list-style: decimal;
}

.pop_desc ol li::before {}

.layer_pop_wrap {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 92;
    background: #fff;
    border-radius: 10px;
}

.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;
    height: 46px;
    padding: 0 15px;
    border-bottom: 1px solid #e3ebee;
}

.layer_pop_wrap>.title h3 {
    font-size: 15px;
    font-weight: 500;
}

.layer_pop_wrap>.title h3 .ic_description {
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 13px;
    display: inline-block;
    vertical-align: middle;
}

.layer_pop_wrap>.title .right .btn {
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 6px;
    background: #e8e8e9;
}

.layer_pop_wrap>.cont {
    padding: 15px 20px;
}
.layer_pop_wrap > .cont::before {
    display:none !important;
}

.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;
    border-top: 1px solid #e3ebee;
}

.layer_pop_wrap .bottom .btn {
    height: 36px;
    line-height: 35px;
    border-radius: 10px;
    padding: 0 20px;
    min-width: 100px;
}