/*html {*/
/*	overflow-y: hidden;*/
/*}*/

/* view wrap */
.view__wrap {
    position: relative;
    max-height: calc(100% - 100px);
    padding-bottom: 10px;
    overflow-y: auto;
    box-sizing: border-box;
}
.view__wrap::-webkit-scrollbar {
    width: 6px;
}
.view__wrap::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--neutral-dark);
}
.view__wrap::-webkit-scrollbar-track {
    box-sizing: border-box;
    background-color: var(--neutral-lighter);
}

.view__wrap::before {
    position: fixed;
    left: 0;
    bottom: 125px;
    width: 100%;
    height: 15px;
    content: '';
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F8F8F8 100%);
}

.content_title__box.pc_hide {
    display: none;
}

/* th 필수 요소 표시 */
.require_sign {
    margin-left: 5px;
}

.title_form__box {
    width: 100%;
    background-color: var(--bg-default);
    border: solid 1px var(--neutral-light);
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    box-sizing: border-box;
}

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

.title_form__title {
    font-size: 22px;
    padding-bottom: 13px;
}

.title_form_table {
    width: 100%;
}

.title_form_table th {
    width: 194px;
    font-weight: 500;
    border-bottom: 1px solid var(--neutral-lighter);
    box-sizing: border-box;
    vertical-align: middle;
    font-size: 14px;
    text-align: left;
    line-height: 1.2;
    word-break: keep-all;
    color: var(--neutral-default);
}

.title_form_table td {
    position: relative;
    width: calc(100% - 194px);
    height: 61px;
    border: 1px solid var(--neutral-lighter);
    box-sizing: border-box;
    vertical-align: middle;
}

.title_form_table tr:first-child {
    border-top: 1px solid var(--neutral-lighter);
    box-sizing: border-box;
}

.title_form_table td {
    padding: 8px 14px;
}

.title_form_table td:last-child {
    border-right: none;
    padding-right: 0;
}

.title_form_table input[type='text'] {
    height: 44px;
    padding: 0 14px;
    box-sizing: border-box;
    font-size: 14px;
}

.title_form_table td ul.check_list,
.title_form_table td ul.file_list {
    display: flex;
    flex-wrap: wrap;
}

/* title_form_table check_list */
.title_form_table td ul.check_list {
    gap: 15px;
}

.title_form_table td ul.check_list li {
    display: flex;
    align-items: center;
}

/* title_form_table file_list */
.title_form_table td ul.file_list {
    gap: 10px;
}

.title_form_table td ul.file_list li {
    position: relative;
    height: 40px;
}

.title_form_table td ul.file_list li:before {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    content: '';
    width: 20px;
    height: 20px;
    background-image: var(--input-file-icon);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.title_form_table td ul.file_list li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    height: 100%;
    padding: 0 50px 0 35px;
    border: 1px solid var(--neutral-light);
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    color: var(--neutral-default);
    cursor: default;
}

.title_form_table td ul.file_list li button {
    position: absolute;
    text-indent: -99999px;
    z-index: 3;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
    background-image: var(--input-file-delete);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* title_form_table name_list */
.title_form_table td ul.name_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.title_form_table td ul.name_list li {
    position: relative;
    height: 40px;
}

.title_form_table td ul.name_list li span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 2;
    font-size: 14px;
    color: var(--neutral-default);
    border: 1px solid var(--neutral-light);
    padding: 0 50px 0 14px;
    box-sizing: border-box;
    border-radius: 6px;
    white-space: nowrap;
    cursor: pointer;
}

.title_form_table td ul.name_list li button {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
    background-image: var(--input-file-delete);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* save__box */
.save__box {
    position: fixed;
    bottom: 0;
    left: 190px;
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /*	width: 100%;*/
    width: calc(100% - 190px);
    height: 100px;
    box-sizing: border-box;
    background-color: var(--bg-default);
    -webkit-box-shadow: 0 -4px 14px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 -4px 14px 0 rgba(0, 0, 0, 0.06);
    transition: left 0.2s ease, width 0.2s ease;
}

.save__box .delete_btn {
    position: absolute;
    right: 30px;
}

.save__box.wide_mode {
    left: 58px;
    width: calc(100% - 58px);
}

.save__box button {
    width: 105px;
    height: 50px;
    font-size: 14px;
    font-weight: 500;
}

.title_form_table input[type='text'].datepicker {
    max-width: 260px;
    padding: 0 40px 0 14px;
}

/* markup css */
.markup__box {
    display: flex;
    padding: 0;
}

.markup__box .fold_item {
    display: none;
    pointer-events: none
}

.markup_form_table_box {
    width: 100%;
    padding: 10px 20px;
}

.panel_actions {
    min-width: 50px;
    max-width: 50px;
    border-left: 1px solid var(--neutral-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.panel_actions__fold_wrapper {
    width: 100%;
    height: calc(61px + (30px * 2));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.panel_actions__fold_btn {
    width: 14px;
    height: 14px;
    border: 0;
    transform: rotate(180deg);
    background-color: transparent;
    background-image: var(--form-fold-arrow-default);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    transition: .3s;
}

.panel_actions__fold-icon {
    width: 100%;
}

.panel_actions__action_wrapper {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid var(--neutral-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel_actions__on_off_toggle_wrapper {

}

.panel_actions__delete_btn {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 0;
    background-image: var(--form-fold-remove-btn);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    cursor: pointer;
}

.markup_add__box {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.markup_add__add_btn {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 0;
    background-image: var(--form-fold-add-btn);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
}

.markup__box.fold_on .fold_item {
    opacity: 1;
    display: table-cell;
    pointer-events: auto;
}

.markup__box.fold_on .panel_actions__fold_wrapper {
    border-bottom: 1px solid var(--neutral-lighter);
}

.markup__box.fold_on .panel_actions__fold_btn {
    transform: rotate(0deg);
}

/* switch toggle */
.switch_wrap {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch_wrap input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch_wrap .slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 1px 1px 0 #D3D3D3 inset;
    background-color: var(--neutral-light);
    border-radius: 26px;
    transition: .4s;
    cursor: pointer;
}

.switch_wrap .slider:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

.switch_wrap input:checked + .slider {
    box-shadow: none;
    background-color: var(--brand-primary-default);
}

.switch_wrap input:checked + .slider:before {
    transform: translateX(26px);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

/* vertical switch toggle */
.vertical_switch_wrap {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 30px;
}

.vertical_switch_wrap input {
    opacity: 0;
    width: 0;
    height: 0;
}

.vertical_switch_wrap .slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 1px 1px 0 #D3D3D3 inset;
    background-color: var(--neutral-light);
    border-radius: 26px;
    transition: .4s;
    cursor: pointer;
}

.vertical_switch_wrap .slider:before {
    position: absolute;
    content: '';
    left: -1px;
    bottom: 0;
    width: 12px;
    height: 12px;
    border: 1px solid var(--neutral-medium);
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

.vertical_switch_wrap input:checked + .slider {
    box-shadow: none;
    background-color: var(--brand-primary-default);
}

.vertical_switch_wrap input:checked + .slider:before {
    transform: translateY(-17px);
    border: 1px solid var(--neutral-medium);
}

.link_locked_setting {
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: var(--form-locked-setting-btn);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    /*display: inline-block;*/
    display: none;
    cursor: pointer;
    border: none;
    padding: 0;
}

.link_locked_setting.on {
    display: inline-block;
}

.link_locked_info {
    display: none;
}

.link_locked_info.on {
    display: contents;
}

.password_preview {
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: var(--form-locked-preview-btn);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    display: inline-block;
    cursor: pointer;
    border: none;
    padding: 0;
}

.link_preview {
    position: absolute;
    z-index: 10;
    top: calc(50% - 12px);
    right: 32px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: var(--form-link-preivew-btn);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    display: inline-block;
    cursor: pointer;
    border: none;
    padding: 0;
}

.password_copy {
    position: absolute;
    z-index: 10;
    top: calc(50% - 12px);
    right: 64px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: var(--form-copy-btn);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    display: inline-block;
    cursor: pointer;
    border: none;
    padding: 0;
}

.title_form_table input.link_password {
    border: 0;
    padding: 0 30px 0 0;
    background: transparent;
    cursor: initial;
}

.title_form_table input.link_password:focus {
    outline: none;
}

.text_link {
    width: 100%;
    height: 44px;
    padding: 0 50px 0 14px;
    color: var(--neutral-default);
    border: solid 1px var(--field-inactive-border);
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.text_label input.link {
    padding: 0 50px 0 14px;
}
.logo_info_msg {
    font-size: 12px;
    font-weight: 300;
    color: var(--neutral-medium);
}
.logo_info_icon {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: transparent;
    background-image: var(--table-tootip-notice);
    background-position: center;
    background-repeat: no-repeat;
}
.logo_info_icon:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 15px;
    left: 0;
    z-index: 100;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: var(--neutral-darker);
    font-size: 12px;
    white-space: nowrap;
    color: #fff;
}

.end_date_box {
    width: 100%;
    display: flex;
    gap: 12px;
}

.end_date_status {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* modal */
.modal__container {
    position: fixed;
    align-items: center;
    justify-content: center;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1300;
}

.modal__container.open {
    display: flex;
}

.modal__wrap {
    z-index: 3;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__box {
    position: relative;
    /*height: 100%;*/
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
}

.modal__box .btn_modal_close {
    width: 34px;
    height: 34px;
    text-indent: -99999px;
    /*background-color: transparent;*/
    border: none;
    mask-image: var(--modal-close-btn-w);
    background-size: contain;
    background-position: center center;
    background-color: #fff;
    mask-repeat: no-repeat;
    margin-bottom: 10px;
}

.modal_body {
    position: relative;
    z-index: 2;
    padding: 30px;
    max-width: 1033px;
    max-height: calc(100% - 44px);
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
    box-sizing: border-box;
}

.modal--view {
    min-width: 1033px;
    max-width: 1033px;
    width: calc(100% - 80px);
    max-height: 100%;
}

.modal--changpw {
    width: 400px;
    max-height: 100%;
    padding: 20px;
    font-size: 14px;
    text-align: left;
}

.modal_bg {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: var(--modal-bg);
    opacity: 0.3;
}

.modal_title {
    display: flex;
    width: 100%;
    /*margin-bottom: 20px;*/
    padding-bottom: 20px;
    border-bottom: 2px solid var(--neutral-default);
    color: var(--neutral-default);
    font-size: 24px;
    font-weight: bold;
    text-align: left;
}

.modal_content {
    width: 100%;
    /*min-height: 258px;*/
    max-height: calc(100% - 116px);
    margin-bottom: 30px;
    overflow: visible;
    /*border-bottom: 2px solid var(--neutral-dark);*/
}

.modal_content_table {
    width: 100%;
    /* height: 704px; */
    font-family: 'Pretendard', sans-serif;
    color: var(--neutral-default);
    /*margin-bottom: 30px;*/
}

.modal_content_table thead {
    background-color: var(--neutral-lightest);
    /*border-top: 2px solid var(--neutral-default);*/
    border-bottom: 1px solid var(--neutral-dark);
    box-sizing: border-box;
    height: 50px;
    text-align: left;
}

.modal_table_header {
    width: 100%;
    display: flex;
    padding: 0 10px;
    box-sizing: border-box;
}

.modal_table_header div {
    display: flex;
    color: var(--neutral-default);
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    align-items: center;
}

.modal_table_header div:first-of-type {
    margin-right: 20px;
}

.modal_content_table thead tr th {
    vertical-align: middle;
    font-size: 15px;
}

.modal_content_table thead tr th .info_th {
    font-weight: 500;
}

.modal_content_table tbody td {
    border: 1px solid var(--neutral-medium);
    box-sizing: border-box;
    vertical-align: middle;
    padding: 10px 15px;
    font-size: 15px;
}

.modal_content_table tbody td.area {
    height: 200px;
    padding: 30px 20px;
    vertical-align: top;
    text-align: left;
}

.modal_content_table tbody td.title {
    height: 50px;
    padding: 10px 20px;
    text-align: left;
}

.modal_content_table tbody td.disabled {
    background-color: var(--neutral-lighter);
}

.modal_content_table tbody td.disabled ul li input {
    background-color: var(--common-100);
    border-color: var(--neutral-dark);
}

.modal_content_table tbody td.disabled ul li label {
    color: var(--neutral-dark);
}

.modal_content_table tbody th {
    width: 121px;
    text-align: left;
    vertical-align: middle;
    border: 1px solid var(--neutral-medium);
    box-sizing: border-box;
    border-left: 0 none;
    padding: 0 15px;
    font-weight: 500;
    font-size: 15px;
}

.modal_content_table tbody tr {
    height: 45px;
    border-left: 0 none;
    border-right: 0 none;
}

.modal_content_table tbody tr td:last-of-type {
    border-right: 0 none;
}

.modal_content_table tbody td input[type='text'] {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 15px;
}

.modal_content_table tbody td textarea {
    height: 100px;
}

.modal_content_table tbody td .file_label {
    height: 125px;
}

.modal_btn_box {
    width: 100%;
    height: 42px;
    text-align: center;
}

.modal_btn_box button {
    width: 125px;
    height: 50px;
}

.sortable-ghost {
    opacity: 0.4;
}

/* modal_confirm */
.modal_confirm__container {
    position: fixed;
    display: none;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1300;
}

.modal_confirm__container.open {
    display: flex;
}

.modal_confirm__body {
    z-index: 2;
    position: absolute;
    top: 50%;
    width: 300px;
    /*height: 187px;*/
    padding: 0 20px 35px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
    background-color: rgb(255, 255, 255);
    text-align: center;
    transform: translateY(-50%);
}

.modal_confirm__bg {
    width: 100%;
    height: 100%;
    background-color: var(--modal-bg);
    opacity: 0.3;
}

.modal_confirm__img_box {
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 99%;

    translate: 0 -50%;
}

.modal_confirm__success {
    background: var(--icon-pop-success) var(--state-alert-success) no-repeat center;
}

.modal_confirm__warning {
    background: var(--icon-pop-warning) var(--state-alert-warning) no-repeat center;
}

.modal_confirm__error {
    background: var(--icon-pop-error) var(--state-alert-error) no-repeat center;
}

.modal_confirm__text_box {
    margin-bottom: 24px;
}

.modal_confirm__text_box .modal_confirm__title {
    color: var(--brand-primary-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal_confirm__text_box .modal_confirm__sub_title {
    color: var(--neutral-darker);
    font-size: 16px;
    line-height: 1.5;
}

.modal_confirm__btn_box {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.modal_confirm__btn_box button {
    width: 104px;
    height: 42px;
}

/************ Responsive *************/
/* tablet */
@media screen and (max-width: 1280px) {
    .save__box {
        width: calc(100% - 58px);
        left: 58px;
    }

    /*	.contents_container .contents .content.content_wide .save__box {*/
    /*		left: 58px;*/
    /*	}*/
}

@media screen and (max-width: 1024px) {
    .save__box {
        width: calc(100% - 58px);
        left: 58px;
    }

    /*	.view__wrap::before {*/
    /*		bottom: 110px;*/
    /*	}*/
}

