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

/* login */
/*=======================================================================================*/
.login_wrap {
    background: url(../images/BG_LOGIN.jpg) no-repeat;
    background-size: 100% 100%;
    position: relative;
    width: 100%;
    height: 100%;
}
.login_wrap .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
}
.login_wrap .inner_top {
    margin-bottom: 30px;
    border-bottom: 1px dashed #bbbbbb;
    padding: 50px 60px 30px;
}
.login_wrap h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}
.login_wrap h2 span {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.login_wrap .desc {
    text-align: center;
    line-height: 1.8;
    color: #333333;
}
.login_wrap .inner_form {
    max-width: 320px;
    margin: 0 auto;
    padding-bottom: 50px;
}
.login_wrap h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
}
.login_wrap .form_element_wrap {
    margin-bottom: 8px;
}
.login_wrap .form_element_wrap i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b5c58;
}
.login_wrap .form_element_wrap .form_input {
    padding-left: 40px;
}
.login_wrap .lost_password {
    margin-bottom: 10px;
}
.login_wrap .btn {
    display: block;
    width: 100%;
    border-radius: 4px;
    height: 36px;
    line-height: 36px;
}
.login_wrap .bottom_logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    color: #808080;
    text-align: center;
}

/* search_box */
/*=======================================================================================*/
.search_box {
    margin: 0 auto;
    position: relative;
    padding: 15px 20px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}
.search_box .row {
    display: flex;
    align-items: center;
    gap: 10px 50px;
    flex-wrap: wrap;
}
.search_box .form_cont_wrap > label {
    min-width: auto;
    padding-right: 30px;
}
.search_box .form_cont_wrap > .form_cont {
    min-width: 130px;
}
.search_box > .btn {
    margin-left: auto;
    height: 36px;
    line-height: 35px;
    padding: 0 20px;
    border-radius: 6px;
    min-width: 100px;
    font-size: 14px;
}

/* board_list_wrap */
/*=======================================================================================*/
.board_list_wrap {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    padding: 20px;
    height: calc(100% - 85px);
    overflow-y: auto;
}
/* board_bottom_wrap */
.board_bottom_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 36px;
}
.board_bottom_wrap .btn {
    display: inline-block;
    vertical-align: middle;
    height: 36px;
    line-height: 35px;
    border-radius: 6px;
    padding: 0 20px;
    min-width: 120px;
}
.board_bottom_wrap .pageing_wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* table */
/*=======================================================================================*/
.table_wrap {
    border-bottom: 2px solid #636772;
}

.table {
    border-spacing: 0;
    width: 100%;
}
.table caption {
    font-size: 0;
    line-height: 0;
    display: none;
}
.table thead th {
    background: #515a60;
    padding: 10px 0;
    color: #fff;
    font-weight: 400;
    height: 20px;
}
.table thead th.checks {
    padding: 10px 5px;
}
.table thead th:first-child {
    border-radius: 4px 0 0 4px;
}
.table thead th:last-child {
    border-radius: 0 4px 4px 0;
}
.table tbody td {
    padding: 10px 0;
    word-break: keep-all;
    text-align: center;
    height: 69px;
}
.table tbody tr {
    position: relative;
    background: #fff;
}
.table tbody tr:nth-child(2n) {
    background: #f6f8f9;
}
.table tbody tr:last-child td {
    border-bottom: none;
}
.table tbody td.left {
    text-align: left;
}
.table tbody td:first-child {
    border-radius: 4px 0 0 4px;
}
.table tbody td:last-child {
    border-radius: 0 4px 4px 0;
}
.table tbody tr:last-child td:first-child {
    border-radius: 4px 0 0 0;
}
.table tbody tr:last-child td:last-child {
    border-radius: 0 4px 0 0;
}
.table tbody td .font_red {
    color: #e2065e;
}
.table tbody td a {
    color: #168eea;
    text-decoration: underline;
}

/* time */
.table tbody td .time {
    line-height: 1;
}
.table tbody td .time em {
    display: block;
    color: #a29a94;
}

/* btn */
.table tbody td .btn {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    box-sizing: border-box;
    padding: 0 15px;
    border-radius: 6px;
    font-size: 12px;
}
.table tbody td .btn i {
    vertical-align: middle;
    margin-right: 2px;
}
.table tbody td .btn span {
    vertical-align: middle;
}

/* status */
.status {
    position: relative;
    display: inline-block;
    padding-left: 18px;
}
.status::before {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
}
.status.green::before {
    background: linear-gradient(#56c204, #429404);
    border: 1px solid #317002;
}
.status.red::before {
    background: linear-gradient(#d50427, #94061e);
    border: 1px solid #94061e;
}
.status.gray::before {
    background: #bfbfbf;
    border: 1px solid #a5a5a5;
}

/* thumb */
.tb_thumb {
    aspect-ratio: 1/1;
    font-size: 0;
    line-height: 0;
    width: 56px;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
    background: #726963;
}
.tb_thumb img,
.tb_thumb video {
    width: 100%;
    height: 100%;
}

/* pageing_wrap */
/*=======================================================================================*/
.pageing_wrap {
    margin: 0 auto;
}
.pageing_wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.pageing_wrap ul li {
    height: 30px;
    line-height: 30px;
    width: 30px;
    position: relative;
}
.pageing_wrap ul li::after {
    content: "";
    background: #e3dedc;
    width: 1px;
    height: 12px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}
.pageing_wrap ul li:last-child::after {
    display: none;
}
.pageing_wrap ul li a {
    display: block;
    font-size: 15px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}
.pageing_wrap ul li.active a {
    background: linear-gradient(217deg, #168eea, #16cdea);
    border-radius: 13px;
    color: #fff;
}

/* scene_group_wrap */
/*=======================================================================================*/
.scene_group_wrap {
    display: flex;
    height: 100%;
    gap: 15px;
}
.scene_group_wrap > .column {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.scene_group_wrap > .column.list {
    max-width: 400px;
    width: 100%;
}
.scene_group_wrap > .column.calendar {
    flex: 1;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    display: block;
}
.scene_group_wrap > .column .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.scene_group_wrap > .column .top h3 {
    font-size: 18px;
    font-weight: 500;
}
.scene_group_wrap > .column .top .btn_wrap .btn {
    display: inline-block;
    height: 26px;
    line-height: 25px;
    padding: 0 4px;
    border-radius: 6px;
    min-width: 100px;
}
.scene_group_wrap > .column > .cont {
    flex: 1;
    background: #f4f8fc;
    box-shadow: 0 0 20px inset rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow-y: auto;
}
.scene_group_wrap > .column > .cont.bg_none {
    background: none;
    box-shadow: none;
    border-radius: 0;
}
.scene_group_wrap > .column .bottom {
    background: #f4f8fc;
    box-shadow: 0 0 20px inset rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    height: 150px;
    overflow-y: auto;
}

.none_scene_list {
    font-size: 23px;
    color: #c9cdd2;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* preview_wrap */
/*=======================================================================================*/
.preview_wrap .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.preview_wrap .top .screen_resolution {
    text-align: right;
}
.preview_wrap .top .screen_resolution span {
    display: block;
    font-weight: 500;
}
.preview_wrap .top .screen_resolution em {
    color: #169cea;
    font-weight: 500;
}

.regist_preview_screen_wrap {
    display: flex;
}

.preview_screen {
    background-color: #f4f8fc; /* 기본 배경색 */
    background: linear-gradient(45deg, #e9e9e9 25%, transparent 25%, transparent 75%, #e9e9e9 75%, #e9e9e9) 0 0, linear-gradient(45deg, #e9e9e9 25%, transparent 25%, transparent 75%, #e9e9e9 75%, #e9e9e9) 10px 10px;
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px; /* 패턴이 겹치지 않도록 설정 */
    box-shadow: 0 0 20px inset rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    width: 600px;
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preview_screen .inner_upload {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preview_screen .inner_upload input {
    display: none;
}
.preview_screen .inner_upload label {
    cursor: pointer;
    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;
}
.preview_screen .inner_upload label:active {
    transform: translateY(1px) scale(0.98);
}
.preview_screen .inner_upload label i {
    font-size: 30px;
    color: #5c6167;
    margin-bottom: 10px;
}
.preview_screen .inner_upload label span {
    display: block;
    color: #5c6167;
    font-size: 15px;
}
.preview_screen_inner {
    position: absolute;
    background: linear-gradient(130deg, #5a5a5a, #313131);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
}
.preview_screen .screen {
    color: #fff;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.preview_screen .screen span {
    background: linear-gradient(130deg, #5a5a5a, #313131);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.preview_screen .screen span.active::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 4px dashed #ff0000;
    position: absolute;
    left: 0;
    top: 0;
}

/* full */
.preview_screen .screen.full {
    width: 100%;
    background: linear-gradient(130deg, #5a5a5a, #313131);
}

/* horizon */
.preview_screen .screen.horizon {
    width: 100%;
}
.preview_screen .screen.horizon span {
    height: 100%;
}

/* vertical */
.preview_screen .screen.vertical {
    height: 100%;
    flex-direction: column;
}
.preview_screen .screen.vertical span {
    width: 100%;
}

/* free */
.preview_screen .screen.free {
    height: 100%;
}
.preview_screen .screen.free span {
    background: linear-gradient(130deg, #5a5a5a, #313131);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

/* scene_group_list */
/*=======================================================================================*/
.scene_group_list {
    padding: 15px;
}
.scene_group_list ul {
    overflow-y: auto;
}
.scene_group_list ul li {
    border: 2px solid #dedede;
    background: #fff;
    margin-bottom: 5px;
    border-radius: 6px;
    padding: 8px 15px;
    position: relative;
    cursor: pointer;    
    
}
.scene_group_list ul li .txt {
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    margin-bottom: 5px;
}
.scene_group_list ul li .info {
    font-size: 12px;
    color: #949597;
    display: flex;
    align-items: center;
}
.scene_group_list ul li .info span {
    padding-right: 10px;
    margin-right: 10px;
    line-height: 1.1;
    position: relative;
}
.scene_group_list ul li .info span::after {
    content: "";
    width: 1px;
    height: 10px;
    background: #d0d4d6;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.scene_group_list ul li .info span:last-child {
    padding-right: 0;
    margin-right: 0;
}
.scene_group_list ul li .info span:last-child::after {
    display: none;
}
.scene_group_list ul li .btn_wrap {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.scene_group_list ul li .btn_wrap .btn {
    display: inline-block;
    vertical-align: middle;
    font-size: 11px;
    padding: 3px 5px;
    border-radius: 6px;
}
.scene_group_list ul li:last-child {
    margin-bottom: 0;
}
.scene_group_list ul li.active {
    background: #34aff5;
    border-color: #12a0e6;
    color: #fff;
}
.scene_group_list ul li.active .btn_wrap {
    right: 30px;
}
.scene_group_list ul li.active .info {
    color: #dbe2e9;
}
.scene_group_list ul li.active::after {
    font-family: "Font Awesome 6 Sharp";
    font-weight: 500;
    content: "\f105";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

/* preview_screen */
.list_preview_screen_wrap {
    padding: 15px;
    border-bottom: 2px dashed #dce0e3;
}
.preview_screen_black {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(130deg, #5a5a5a, #313131);
    border-radius: 2px;
    max-height: 400px;
    margin: 0 auto;
    position: relative;
}
.preview_screen_black .resolution {
    font-size: 30px;
    color: #fff;
    opacity: 0.2;
}
.preview_screen_black .split_screen {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(130deg, #5a5a5a, #313131);
    border-radius: 2px;
    position: absolute;
    color: #fff;
    z-index: 99;
    cursor: pointer;
}
.preview_screen_black .split_screen.active {
    border: 3px dashed #ff0000;
}

/* scene_schedule_list */
.scene_schedule_list {
    padding: 15px;
}
.scene_schedule_list ul {
    overflow-y: auto;
}
.scene_schedule_list ul li {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 9px;
    gap: 6px;
    position: relative;
}
.scene_schedule_list ul li:last-child {
    margin-bottom: 0;
}
.scene_schedule_list ul li span {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #34aff5;
    color: #fff;
    border-radius: 14px;
}
.scene_schedule_list ul li .category {
    display: none;
}
.scene_schedule_list ul li em {
    flex: 1;
    border: 2px solid #dedede;
    background: #fff;
    height: 36px;
    line-height: 32px;
    border-radius: 6px;
    padding: 0 15px;
}
.scene_schedule_list ul li .sec {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #b1b1b1;
    font-size: 12px;
}

/* scene_schedule_list2 */
.scene_schedule_list2 {
    padding: 15px;
}
.scene_schedule_list2 ul {
    overflow-y: auto;
}
.scene_schedule_list2 ul li {
    cursor: pointer;
    border: 2px solid #dedede;
    background: #fff;
    height: 36px;
    line-height: 32px;
    border-radius: 6px;
    padding: 0 15px;
    position: relative;
    margin-bottom: 9px;
}
.scene_schedule_list2 ul li span {
    display: none;
}
.scene_schedule_list2 ul li:last-child {
    margin-bottom: 0;
}
.scene_schedule_list2 ul li .category {
    display: inline-block;
    vertical-align: middle;
    min-width: 50px;
    margin-right: 20px;
    position: relative;
    text-align: center;
}
.scene_schedule_list2 ul li .category::after {
    content: "";
    width: 2px;
    height: 12px;
    background: #dedede;
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
}
.scene_schedule_list2 ul li em {
    display: inline-block;
    vertical-align: middle;
}
.scene_schedule_list2 ul li .sec {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #b1b1b1;
    font-size: 12px;
}

.screen_option_wrap {
    border-top: 2px dashed #dce0e3;
    padding: 5px 20px;
}

.screen_control {
    background: #f4f8fc;
    flex: 1;
}
.screen_control .full {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    color: #a9b1b4;
}

.screen_control ul {
    overflow-y: auto;
    padding: 15px;
    max-height: 600px;
}
.screen_control ul li {
    background: linear-gradient(130deg, #dde2e8, #c2ced9);
    border: 3px solid #acb8c4;
    border-radius: 8px;
    margin-bottom: 8px;
}
.screen_control ul li.active {
    border: 3px dashed #ff0000;
}

.screen_control ul li:last-child {
    margin-bottom: 0;
}
.screen_control ul li .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    margin-bottom: 0;
}
.screen_control ul li .top .btn {
    height: 26px;
    line-height: 26px;
    min-width: 60px;
    font-size: 12px;
    border-radius: 6px;
}
.screen_control ul li .cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding: 5px;
}
.screen_control ul li .cont .form_element_wrap {
    min-height: 30px;
}
.screen_control ul li .cont label {
    min-width: 20px;
    text-align: center;
}
.screen_control ul li .cont .form_input {
    height: 30px;
    padding: 0 10px;
    width: calc(100% - 20px);
}
.screen_control .btm {
    padding-top: 10px;
    text-align: center;
}
.screen_control .btm .btn {
    display: inline-block;
    height: 36px;
    line-height: 35px;
    padding: 0 20px;
    border-radius: 6px;
    min-width: 80px;
    font-size: 14px;
}

/* calendar_wrap */
/*=======================================================================================*/
.calendar_wrap {
    width: 100%;
    height: calc(100% - 80px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    padding: 20px;
}
#calendar {
    height: 100%;
}

/* dataview */
/*=======================================================================================*/
.form_dataview_wrap {
    display: flex;
    align-items: center;
}
.form_dataview_wrap .tit {
    padding-right: 30px;
}
.form_dataview_wrap .cont span {
    display: inline-block;
    vertical-align: middle;
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    background: #f4f8fc;
    box-shadow: 0 0 6px inset rgba(0, 0, 0, 0.06);
    min-width: 70px;
    text-align: right;
}
.form_dataview_wrap .cont em {
    display: inline-block;
    vertical-align: middle;
    height: 36px;
    line-height: 36px;
    padding-left: 5px;
}

/* form_databtn_wrap */
/*=======================================================================================*/
.form_databtn_wrap {
    display: flex;
    align-items: center;
}
.form_databtn_wrap .tit {
    padding-right: 30px;
}
.form_databtn_wrap .cont .btn {
    display: inline-block;
    height: 36px;
    line-height: 36px;
    box-sizing: border-box;
    padding: 0 15px;
    border-radius: 6px;
    font-size: 14px;
}
.form_databtn_wrap .cont .btn i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}
.form_databtn_wrap .cont .btn span {
    display: inline-block;
    vertical-align: middle;
}

/* dashlist_wrap */
/*=======================================================================================*/
.dashlist_wrap {
    margin-bottom: 20px;
    overflow: hidden;
}
.dashlist_wrap > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
}
.dashlist_wrap > ul > li {
    border: 1px solid #ececec;
    border-radius: 6px;
    box-sizing: border-box;
    padding: 15px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dashlist_wrap > ul > li:hover {
    transform: scale(1.03);
}

/* dashlist_card */

.dashlist_card .top {
    margin-bottom: 5px;
}

.dashlist_card .top .tit {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    font-size: 14px;
    border-radius: 6px;
    padding: 2px 8px;
}
.dashlist_card .top .tit.green {
    background: #429404;
    color: #fff;
}
.dashlist_card .top .tit.red {
    background: #e50c56;
    color: #fff;
}
.dashlist_card .top .tit.gray {
    background: #c5c3c4;
    color: #fff;
}

.dashlist_card .pic {
    aspect-ratio: 1/1;
    background: #eeeeee;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.dashlist_card .pic img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: 3;
}
.dashlist_card .pic::before {
    position: absolute;
    content: "준비중";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    opacity: 0.2;
    z-index: 2;
}
.dashlist_card .cont {
    padding-top: 10px;
}
.dashlist_card .cont li {
    display: flex;
    align-items: center;
}
.dashlist_card .cont li .tit {
    font-size: 13px;
    flex-basis: 40px;
}
.dashlist_card .cont li progress {
    flex: 1;
    height: 8px;
    appearance: none; /* 크롬, 사파리 브라우저의 기본 스타일 제거 */
}

.dashlist_card .cont li progress::-webkit-progress-bar {
    background-color: #c7c9c9;
    border-radius: 3px;
}

.dashlist_card .cont li progress::-webkit-progress-value {
    background-color: #ee056a;
    border-radius: 3px;
}

.dashlist_card .cont li progress::-moz-progress-bar {
    background-color: #ee056a;
    border-radius: 3px;
}
.dashlist_card .cont li .num {
    font-size: 11px;
    color: #888b95;
    flex-basis: 35px;
    text-align: right;
}
.dashlist_wrap .tip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.dashlist_wrap .tip .left span {
    margin-right: 10px;
}
.dashlist_wrap .tip .left span::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    margin-right: 4px;
}
.dashlist_wrap .tip .left span.green::before {
    background: #429404;
}
.dashlist_wrap .tip .left span.red::before {
    background: #e50c56;
}
.dashlist_wrap .tip .left span.gray::before {
    background: #c5c3c4;
}

/* file_uploader */
/*=======================================================================================*/
.file_uploader {
    border: 2px dashed #dbd5d2;
    border-radius: 4px;
    background: #f9f7f6;
    min-width: 300px;
}
.file_uploader.min-w500 {
    min-width: 500px;
}
.file_uploader.min-w600 {
    min-width: 600px;
}
.file_uploader .button {
    border-bottom: 2px dashed #dbd5d2;
    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 8px 10px;
    min-height: 140px;
    position: relative;
}
.file_uploader .file_list.min-h300 {
    min-height: 300px;
}
.file_uploader .file_list.min-h400 {
    min-height: 400px;
}
.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 {
    padding: 10px 0;
    background: #f9f7f6;
}
.file_uploader .file_list ul li {
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #dbd5d2;
    border-radius: 6px;
    padding: 5px;
    margin-bottom: 5px;
}
.file_uploader .file_list ul li:last-child {
    margin-bottom: 0;
}

.file_uploader .file_list ul li .txt {
    font-size: 12px;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 말줄임 적용 */
    text-align: left;
    max-width: 120px;
}
.file_uploader .file_list ul li .form_element_wrap {
    flex: 1;
    width: auto;
}
.file_uploader .file_list ul li .form_element_wrap .form_input {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    padding: 0 10px;
}
.file_uploader .file_list ul li .capacity {
    font-size: 9px;
    border-radius: 6px;
    background: #5b5e63;
    color: #fff;
    padding: 2px 5px;
}

.file_uploader .file_list ul li progress {
    width: 70px;
    height: 8px;
    appearance: none; /* 크롬, 사파리 브라우저의 기본 스타일 제거 */
}

.file_uploader .file_list ul li progress::-webkit-progress-bar {
    background-color: #c7c9c9;
    border-radius: 3px;
}

.file_uploader .file_list ul li progress::-webkit-progress-value {
    background-color: #ee056a;
    border-radius: 3px;
}

.file_uploader .file_list ul li progress::-moz-progress-bar {
    background-color: #ee056a;
    border-radius: 3px;
}

.file_uploader .file_list ul li .btn {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 43%;
}
.file_uploader .file_list ul li .btn i {
    font-size: 13px;
}

/* scene_group_list */
/*=======================================================================================*/
.scene_device_list {
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.scene_device_list ul {
    overflow-y: auto;
    flex: 1;
}
.scene_device_list ul li {
    border: 2px solid #dedede;
    background: #fff;
    height: 36px;
    line-height: 32px;
    margin-bottom: 5px;
    border-radius: 6px;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.scene_device_list ul li i {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    margin-right: 5px;
}
.scene_device_list ul li i.green {
    background: linear-gradient(#56c204, #429404);
    border: 1px solid #317002;
}
.scene_device_list ul li i.red {
    background: linear-gradient(#d50427, #94061e);
    border: 1px solid #94061e;
}
.scene_device_list ul li i.gray {
    background: #bfbfbf;
    border: 1px solid #a5a5a5;
}
.scene_device_list ul li span {
    max-width: 250px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.scene_device_list ul li:last-child {
    margin-bottom: 0;
}
.scene_device_list ul li.active {
    background: #34aff5;
    border-color: #12a0e6;
    color: #fff;
}
.scene_device_list ul li.active::after {
    font-family: "Font Awesome 6 Sharp";
    font-weight: 500;
    content: "\f105";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.scene_device_list .state_tip {
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e6e8e9;
    gap: 10px;
}
.scene_device_list .state_tip span {
    padding-left: 18px;
    position: relative;
}
.scene_device_list .state_tip span::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.scene_device_list .state_tip .green::before {
    background: linear-gradient(#56c204, #429404);
    border: 1px solid #317002;
}
.scene_device_list .state_tip .red::before {
    background: linear-gradient(#d50427, #94061e);
    border: 1px solid #94061e;
}
.scene_device_list .state_tip .gray::before {
    background: #bfbfbf;
    border: 1px solid #a5a5a5;
}

/* bottom_info_wrap */
/*=======================================================================================*/
.bottom_info_wrap {
    padding: 15px;
}
.bottom_info_wrap ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
}
.bottom_info_wrap ul li {
    display: flex;
}
.bottom_info_wrap ul li span {
    width: 45px;
    font-size: 12px;
    color: #949597;
}
.bottom_info_wrap ul li em {
    flex: 1;
    font-size: 12px;
}

/* split_screen_list */
/*=======================================================================================*/
.split_screen_list ul {
    display: flex;
    gap: 20px;
}
.split_screen_list ul li {
    display: flex;
    align-items: center;
}
.split_screen_list ul li .input_radio input[type="radio"] + label {
    padding-left: 27px;
}
.split_screen_list ul li .input_radio input[type="radio"] + label em {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.split_screen_list ul li .input_radio input[type="radio"] + label em .icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    background: #f4f8fc;
    border-radius: 6px;
    box-shadow: 0 0 20px inset rgba(0, 0, 0, 0.06);
}
.split_screen_list ul li .input_radio input[type="radio"] + label em .txt {
    line-height: 1.2;
}

/* program_list_wrap */
/*=======================================================================================*/
.program_list_wrap {
    display: flex;
    height: 100%;
    background: none;
    box-shadow: none;
    border-radius: inherit;
    overflow-y: inherit;
}
.program_list_wrap > div {
    flex: 1;
}
.program_list_wrap .left {
    border-right: 2px dashed #d9e0e4;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}
.program_list_wrap .left .list {
    background: #f4f8fc;
    box-shadow: 0 0 20px inset rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow-y: auto;
    padding: 15px;
    flex: 1;
}
.program_list_wrap .right {
    background: #f4f8fc;
    box-shadow: 0 0 20px inset rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow-y: auto;
    padding: 15px;
    margin-left: 15px;
}

/* previw_screen_wrap */
.previw_screen_wrap {
    background-color: #f4f8fc; /* 기본 배경색 */
    background: linear-gradient(45deg, #e9e9e9 25%, transparent 25%, transparent 75%, #e9e9e9 75%, #e9e9e9) 0 0, linear-gradient(45deg, #e9e9e9 25%, transparent 25%, transparent 75%, #e9e9e9 75%, #e9e9e9) 10px 10px;
    background-size: 20px 20px;
    border-radius: 4px;
    box-shadow: 0 0 20px inset rgba(0, 0, 0, 0.06);
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    width: 400px;
    height: 400px;
}
.previw_screen_wrap.dashborad {
    width: 600px;
    height: 600px;
    margin: 0 auto;
}
.previw_screen_wrap.dashborad .previw_screen span.active::after {
    display: none;
}

.previw_screen_wrap .previw_screen {
    background: linear-gradient(130deg, #5a5a5a, #313131);
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    display: grid;
}
.previw_screen_wrap .previw_screen.H2 {
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.previw_screen_wrap .previw_screen.H4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}
.previw_screen_wrap .previw_screen.V2 {
    grid-template-rows: 1fr 1fr;
    height: 100%;
}
.previw_screen_wrap .previw_screen.V4 {
    grid-template-rows: 1fr 1fr 1fr 1fr;
    height: 100%;
}

.previw_screen_wrap .previw_screen span {
    flex: 1;
    background: linear-gradient(130deg, #5a5a5a, #313131);
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
}
.previw_screen_wrap .previw_screen span.active {
    position: relative;
}
.previw_screen_wrap .previw_screen span.active::after {
    content: "";
    position: absolute;
    left: 0;
    text-transform: 0;
    width: 100%;
    height: 100%;
    border: 4px dashed #d50427;
}

.previw_screen_wrap .previw_screen video,
.previw_screen_wrap .previw_screen img {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    font-size: 0;
    line-height: 0;
}

/* program_file_list */
/*=======================================================================================*/
.program_file_list {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.program_file_list .filter {
    border-bottom: 2px solid #d9e0e4;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 5px;
}
.program_file_list .filter h4 {
    font-weight: 600;
    font-size: 14px;
}
.program_file_list .cont_wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.program_file_list ul {
    flex: 1;
    overflow-y: auto;
}
.program_file_list ul li {
    display: flex;
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
}
.program_file_list ul li .number {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #34aff5;
    border-color: #12a0e6;
    color: #fff;
    border-radius: 10px 0 0 10px;
    z-index: 2;
    font-size: 12px;
}
.program_file_list ul li.active .inner_cont {
    background: #34aff5;
    border-color: #12a0e6;
    color: #fff;
}
.program_file_list ul li.active .inner_cont .info span {
    color: #dbe2e9;
}
.program_file_list ul li.active .number {
    background: #fff;    
    color: #12a0e6;
}
.program_file_list ul.none_list li .number {
    display: none;
}

.program_file_list ul li .thumb {
    width: 70px;
    aspect-ratio: 1/1;
    font-size: 0;
    line-height: 0;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    background: linear-gradient(130deg, #5a5a5a, #313131);
}
.program_file_list ul li .thumb img {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
.program_file_list ul li .inner_cont {
    flex: 1;
    border: 2px solid #dedede;
    border-left: none;
    background: #fff;
    border-radius: 0 6px 6px 0;
    padding: 10px 10px;
    position: relative;
}

.program_file_list ul li .inner_cont .tit {
    padding-top: 4px;
    max-width: 250px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    margin-bottom: 7px;
}

.program_file_list ul li .inner_cont .info {
    font-size: 12px;
    color: #949597;
    display: flex;
    align-items: center;
}
.program_file_list ul li .inner_cont .info span {
    padding-right: 10px;
    margin-right: 10px;
    line-height: 1.1;
    position: relative;
}
.program_file_list ul li .inner_cont .info span::after {
    content: "";
    width: 1px;
    height: 10px;
    background: #d0d4d6;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.program_file_list ul li .inner_cont .info span:last-child {
    padding-right: 0;
    margin-right: 0;
}
.program_file_list ul li .inner_cont .info span:last-child::after {
    display: none;
}

/* popup_top */
/*=======================================================================================*/
.popup_top {
    margin: 0 auto;
    position: relative;
    padding: 15px 20px;
    background: #fff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e3dedc;
}
.popup_top .row {
    display: flex;
    align-items: center;
    gap: 10px 50px;
    flex-wrap: wrap;
}

/* pop_tab */
/*=======================================================================================*/
.tabs.popup .tab-button {
    flex: 1;
    padding: 10px 0;
}
.tabs.popup .tab-button.active {
    background: linear-gradient(217deg, #5d646b, #5b5e63);
    color: #fff;
}

/* dashview_wrap */
/*=======================================================================================*/
.dashview_wrap {
    padding: 15px 20px;
    display: flex;
    gap: 20px;
}
.dashview_wrap .dashlist_card {
    width: 400px;
}
.dashview_wrap .info_desc_wrap {
    flex: 1;
    background: #f4f8fc;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 20px inset rgba(0, 0, 0, 0.06);
}
.dashview_wrap .info_desc_wrap ul {
    overflow-y: auto;
    max-height: 453px;
}

/* info_desc_wrap */
/*=======================================================================================*/
.info_desc_wrap ul li {
    display: flex;
    margin-bottom: 10px;
    gap: 20px;
    border-bottom: 1px dashed #dadbdb;
    padding-bottom: 9px;
}
.info_desc_wrap ul li span {
    flex-basis: 80px;
    position: relative;
}
.info_desc_wrap ul li span::after {
    content: "";
    width: 1px;
    height: 12px;
    background: #dadbdb;
    position: absolute;
    right: -8px;
    top: 9px;
    transform: translateY(-50%);
}
.info_desc_wrap ul li em {
    flex: 1;
}

/* disk_capacity */
/*=======================================================================================*/
.disk_capacity {
    position: absolute;
    right: 20px;
    top: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.disk_capacity h4 {
}
.disk_capacity .cont {
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
}
.disk_capacity .cont .num {
    color: #9c908e;
    font-size: 11px;
}
.disk_capacity .cont progress {
    flex: 1;
    height: 8px;
    appearance: none; /* 크롬, 사파리 브라우저의 기본 스타일 제거 */
}

.disk_capacity .cont progress::-webkit-progress-bar {
    background-color: #c7c9c9;
    border-radius: 3px;
}

.disk_capacity .cont progress::-webkit-progress-value {
    background-color: #ee056a;
    border-radius: 3px;
}

.disk_capacity .cont progress::-moz-progress-bar {
    background-color: #ee056a;
    border-radius: 3px;
}

/* scenario_scene_list_wrap */
/*=======================================================================================*/
.scenario_scene_list_wrap {
    display: flex;
    min-width: 600px;
    padding: 15px;
    gap: 20px;
}
.scenario_scene_list_wrap > div {
    flex: 1;    
}
.scenario_scene_list_wrap > div h4 {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}
.scenario_scene_list_wrap > .left {
    position: relative;
}
.scenario_scene_list_wrap > .left::before {
    font-family: "Font Awesome 6 Sharp";
    font-weight: 900;
    content: "\f060";
    font-size: 35px;
    position: absolute;
    left: calc(100% - 6px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    color: #9ba6b4;
}
.scenario_scene_list_wrap .scene_group_list {
    background: #f4f8fc;
    box-shadow: 0 0 20px inset rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}
.scenario_scene_list_wrap .scene_group_list ul {
    height: 400px;
}
