@charset "utf-8";

/* box 공통 */
.container {
    width: 100%;
    height: 100%;
}

.content-box {
    width: 100%;
    height: 100%;
}

.w100{
    width: 100%;
}

.left-content,
.right-content {
    height: 100%;
}

.content-wrap {
    height: calc(100% - 47px);
}

.content {
    width: 100%;
    overflow-y: auto;
}

.content:last-child {
    margin-bottom: 0;
}

.content-zone {
    height: calc(100% - 57px);
}

.left-content,
.right-content,
.row,
.content {
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
}

.row {
    padding: 0;
}

.form-box {
    background-color: #edf0ff;
    border: 1px solid #dbe3fb;
    padding: 15px;
    border-radius: 5px;
}


.border {
    border: 1px solid #eee;
    border-radius: 5px;
}

.border.active {
    border: 1px solid var(--color-blue);
    border-radius: 5px;
}

.overflow-y {
    overflow-y: auto;
}
.overflow-x {
    overflow-x: auto;
}

/* title 공통 */
.page-titleZone {
    margin-bottom: 10px;
}

.main-title {
    font-family: 'GmarketSansB';
    font-size: 2rem;
    color: #213f99;
}

.content-titleZone {
    padding-bottom: 10px;
    border-bottom: 1px solid #aaa;
    margin-bottom: 10px;
}

.content-titleZone2 {
    margin-bottom: 10px;
}

.box-title {
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
}

.content-titleZone2 > .box-title::before{
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-blue);
    margin-right: 1rem;
}

.object-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-blue);
}

.detail-text{
    font-size: 1.3rem;
    font-weight: 400;
}
.detail-bold{
    font-size: 1.3rem;
    font-weight: 700;
}


/* 테이블 공통 */
.table-zone {
    padding: 15px 0;
}


.form-table,
.list-table2 {
    border-bottom: 1px solid #bbb;
}
.sticky-table th,
.sticky-table td,
.list-table th,
.list-table td,
.list-table2 th,
.list-table2 td,
.form-table th {
    text-align: center;
}

.form-table th,
.form-table td,
.list-table2 td {
    border-top: 1px solid #bbb;
}
.sticky-table thead th,
.list-table thead th,
.list-table2 thead th {
    background-color: #dbe3fb;
    color: #213f99;
}

.list-table.orange thead tr,
.sticky-table.orange thead tr {
    background-color: #f29600;
    color: #fff;
}

.list-table tbody tr,
.list-table2 tbody tr,
.sticky-table tbody tr {
    cursor: pointer;
}

.list-table tbody tr:hover,
.list-table2 tbody tr:hover,
.sticky-table tbody tr:hover {
    background-color: var(--color-light-orange);
}

.list-table tbody tr:nth-child(even)
/* .sticky-table tbody tr:nth-child(even) */ {
    background-color: #f4f6ff;
}

.list-table.orange tbody tr:nth-child(even),
.sticky-table.orange tbody tr:nth-child(even) {
    background-color: #fff6e8;
}

.form-table th {
    color: #213f99;
    text-align: center;
    background-color: #dbe3fb;
}

.sticky-table thead th{
    position: sticky;
    top: 0;
}

.form-table2 th,
.custom-subtitle {
    color: #213f99;
    /* text-align: center; */
    font-weight: 800;
}

.option-table th {
    color: #213f99;
}

.list-info {
    margin-bottom: 10px;
}

.no-list {
    text-align: center;
    font-size: 1.3rem;
    line-height: 120px;
}

.modal-table {
    border-bottom: 0;
}

.modal-table td {
    border-top: 0;
}

/* 서치바 공통 */
.searchbar-zone {
    margin-bottom: 10px;
}

/* 기본 서치바 */
.search-square {
    position: relative;
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.square-date,
.square-select {
    width: 150px;
}

input[type="text"].square-input {
    color: #646464;
    padding: 6px 10px;
    border-radius: 5px 0 0 5px;
    width: 311px;
    transition: all ease-in-out .5s;
}

.square-input:hover,
.square-input:focus {
    box-shadow: 0 0 1em #00000013;
}

.square-input:focus {
    outline: none;
    background-color: #f0eeee;
}

.square-input::-webkit-input-placeholder {
    font-weight: 100;
    color: #ccc;
}


.square-button {
    margin-left: 0;
    border-radius: 0 5px 5px 0;
    padding: 2.5px 0;
    /* border: none;

    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%); */
}

.square-button:hover {
    cursor: pointer;
}

.square-icon {
    color: #b4b4b4;
}

input[type="text"].full-input,
input[type="password"].full-input,
.full-select {
    width: 100%;
}

input[type="text"].half-input,
input[type="password"].half-input,
.half-select {
    width: 50%;
}

/* 상세 서치바 */
.search-bottom {
    padding: 10px 0;
}

.option-searchbar {
    width: 75%;
    margin: 0 auto;
    padding: 15px;
    background-color: #f8f9fe;
    border-radius: 10px;
}

.search-top {
    padding: 15px 0;
    border-bottom: 1px solid #aaa;
}

/* radio css */
.input-container label {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 3px;
}

.input-container label input.custom-radiobox,
.input-container label input.custom-checkbox {
    position: absolute;
    left: -9999px;
}

.input-container label input.custom-radiobox:checked+span {
    background-color: #5b72b8;
    color: #fff;
}

.input-container label input.custom-checkbox:checked+span {
    background-color: #f8bb59;
    color: #fff;
}

.input-container label input.custom-radiobox:checked+span:before {
    box-shadow: inset 0 0 0 4px #213f99;
}

.input-container label input.custom-checkbox:checked+span:before {
    box-shadow: inset 0 0 0 4px #ff9d00;
}

.input-container label span {
    display: flex;
    align-items: center;
    padding: 3px 7px;
    border-radius: 10px;
    transition: 0.25s ease;
    color: #333;
}


.input-container label.radio-label span:hover {
    background-color: #d6d6e5;
}

.input-container label.check-label span:hover {
    background-color: #f4e3c2;
}

.input-container label.radio-label span:before,
.input-container label.check-label span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 3px;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 1px #333;
}

.input-container label.check-label span:before {
    border-radius: 0%;
}

/* 기타 공통 */
.coupler {
    font-size: 1.3rem;
    margin-left: 5px;
}

.option-title {
    padding: 0 5px;
    font-size: 1.3rem;
    color: #213f99;
    margin-left: 5px;
}

.count-zone {
    font-size: 1.3rem;
}

.count-zone span {
    font-weight: 900;
    color: #213f99;
}


/* 모달 */
.modal-wrapper {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.modal-container {
    background: #fff;
    min-width: 500px;
    border-radius: 5px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 20px;
    box-sizing: border-box;
    max-height: 95%;
    min-height: 500px;
}

.modal-title {
    width: 100%;
    border-bottom: 1px solid #d4cccc;
    padding: 0 0 10px 0;
}

.modal-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-content-monthly {
    width: 100%;
    padding: 13px 0 0 0;
    overflow-y: auto;
    font-size: 13px;
}
.modal-content-monthly > p{font-size: 14px;}
.large-modal {
    width: 90%;
}

.small-modal {
    min-width: 350px;
    min-height: 200px;
    /* max-width: 450px;
    height: auto;
    max-height: 50%; */
}

.list-modal {
    width: 80%;
    height: 80%;
}

.alert-write {
    font-size: 1.6rem;
    line-height: 180%;
}


.modal-content-monthly::-webkit-scrollbar {
    width: 10px;
}

.modal-content-monthly::-webkit-scrollbar-thumb {
    background-color: #6b6b6b;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.modal-content-monthly::-webkit-scrollbar-track {
    background-color: #eee;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}

.modal-end {
    width: 100%;
    padding: 15px 0 0 0;
    border-top: 1px solid #eee;
    gap: 20px;
}

.alert-modal .modal-end button,
.small-modal .modal-end button {
    margin-left: 0;
}


/* 탭 */
.tab-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.tab-nav li a {
    display: block;
    font-size: 1.6rem;
    text-align: center;
    border-right: 1px solid #eee;
    padding: 0 10px;
}

.tab-nav li a.activeTab {
    color: #213f99;
    font-weight: 600;
}

.tab-nav li:last-child a {
    border-right: 0;
}

.tab-nav2 {
    border-bottom: 1px solid #eee;
}

.tab-nav2 li a {
    display: block;
    font-size: 1.6rem;
    text-align: center;
    border: 1px solid #eee;
    padding: 0 10px;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    border-bottom: 5px solid #f8f8f8;
}

.tab-nav2 li a.activeTab {
    color: var(--color-blue);
    font-weight: 600;
    background-color: #fff;
    border-bottom: 5px solid var(--color-blue);
}

.column-nav {
    height: 100%;
    background-color: var(--color-blue);
    padding: 10px 0;
}

.column-nav ul li a {
    display: block;
    font-size: 1.1rem;
    text-align: center;
    padding: 10px;
    color: var(--color-gray);
}

.column-nav ul li a.activeTab {
    color: var(--color-white);
    font-weight: bold;
}

.tab-content {
    height: 100%;
    overflow-y: auto;
}

.tab-content2 {
    height: calc(100% - 46px);
}

.tab-content2 .content-box {
    padding: 10px;
}

.tabnav2>ul>li {
    border: 1px solid var(--color-blue);
    border-radius: 5px;
    color: var(--color-blue);
    background-color: var(--color-white);
}

.tabnav2>ul>li p,
.tabnav3 > ul > li > p {
    font-size: 1.3rem;
    padding: 8px 10px;
}

.tabnav2>ul>li p.activeTab2 {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.tab-content2 {
    padding: 10px 0;
}

.tabnav3{
    border-bottom: 1px solid var(--color-blue);
}
.tabnav3 > ul > li{
    border: 1px solid var(--color-blue);
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
    color: var(--color-blue);
    background-color: var(--color-white);
}

.tabnav3 > ul > li > p.activeOption {
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 5px 5px 0 0;
}


/* 라벨 css(상세 조회랑 다름) */
.chekck-type {
    display: none;
}

.chekcktype-label {
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #d6def6;
    color: #213f99;
}

.chekck-type:checked+label {
    background-color: #213f99;
    color: #fff;
}


/* file tree */
.file-list {
    display: block;
    padding: 5px;
    font-size: 1.3rem;
}

.selected {
    background-color: rgb(255, 249, 239);
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    border-radius: 5px;
}

.item {
    background-color: var(--color-white);
    border-radius: 5px;
    padding: 5px;
    width: 100%;
    border: 1px solid #eee;
}

.item>p {
    font-size: 1.3rem;
}


/* 스타일 컴포넌트 */
.color-picker {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 5px;
    padding: 0 2px;
    position: relative;
}

.color-picker::after {
    content: "+";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--color-white);
    color: #6b6b6b;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 2rem;
    line-height: 20px;
}

.up,
.down {
    border: 1px solid #aaa;
    text-align: center;
    padding: 1.5px 0;
    background-color: var(--color-white);
}

.up {
    border-radius: 0 5px 5px 0;
    border-left: none;
}

.down {
    border-radius: 5px 0 0 5px;
    border-right: none;
}

.up button,
.down button {
    font-size: 2rem;
}

input[type="text"].size-input {
    border-radius: 0;
    text-align: center;
}

.color-list {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.check-group:first-child{
    margin-left: 0;
}

.style-label {
    border: 1px solid #eee;
    border-radius: 3px;
    background-color: var(--color-white);
}

.style-label>svg {
    color: #aaa;
}


.style-input{
    display: none;
}
.style-input:checked + .style-label {
    border: 1px solid var(--color-blue);
}
.style-input:checked + .style-label svg{
    color: var(--color-blue);
}

/* 투명도 */
.slider-container {
    position: relative;
}

.slider {
    width: 100%;
    background: linear-gradient(to right, red var(--slider-percentage), transparent var(--slider-percentage));
}

.slider::-webkit-slider-runnable-track {
    background: linear-gradient(to right, red var(--slider-percentage), transparent var(--slider-percentage));
}

.component-title-zone {
    display: table;
}

.component-maintitle {
    font-size: 1.8rem;
    /* font-weight: bold; */
    position: relative;
    padding-left: 10px;
    margin-right: 10px;

}

.component-maintitle::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: var(--color-blue);
    left: 0px;
}

.component-subtitle {
    font-size: 1.4rem;
    color: #aaa;
    display: table-cell;
    vertical-align: middle;
}