:root {
    --global-home-color: #366BCC;
    --global-dark-home-color: #2e5cb0;
    --bright-border-color: #D9D9D9;
    --form-border-color: #ced4da;
    --bright-txt-color: #787878;
    --base-border-color: #c9c9c9;
    --base-black-txt-color: #444444;
    --bs-breadcrumb-divider: "/\00a0"
}


* {
    font-family: 'GmarketSans', sans-serif;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    border: 1px solid var(--bright-border-color);
    padding: 0.4rem 0;
    position: relative;
}

.text-center{
    text-align: center;
}

.popup-wrap {
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: 1.46vw;
    z-index: 999;
}

.popup-wrap.active {
    display: flex;
}

.popup-wrap .popup {
    width: 100%;
    max-width: 50vw;
    height: auto;
    overflow: hidden;
    border: 0.10vw solid #535353;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.popup .popup-title {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.popup .footer-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.popup .footer-between-btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup .footer-btn button, .popup .footer-between-btn button {
    margin-left: 1rem;
    padding: 0.3rem 1rem;
    font-size: 0.875rem;
    border: none;
}

.popup .footer-between-btn .left-action button {
    margin-left: 0;
}

.popup .footer-btn button:first-child, .popup .footer-between-btn .right-action button:first-child {
    background-color: var(--global-home-color);
    color: #FFF;
}

.popup .footer-btn button:last-child , .popup .footer-between-btn .right-action button:last-child {
    background-color: #e1e1e1;
    color: black;
}


.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 3rem;
}

.pagination {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin-top: 10px;
}

.pagination li {
    display: inline;
    text-align: center;
}

.pagination a {
    float: left;
    display: block;
    font-size: 14px;
    text-decoration: none;
    padding: 5px 12px;
    color: #fff;
    margin-left: -1px;
    border: 1px solid transparent;
    line-height: 1.5;
}

.pagination a.active {
    cursor: default;
}

.prev.in-active, .next.in-active {
    pointer-events: none;
}

.pagination a:active {
    outline: none;
}

.pagination li:first-child a {
    -moz-border-radius: 6px 0 0 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px 0 0 6px;
}

.pagination li:last-child a {
    -moz-border-radius: 0 6px 6px 0;
    -webkit-border-radius: 0;
    border-radius: 0 6px 6px 0;
}

.pagination a {
    border-color: #ddd;
    color: var(--global-home-color);
    background: #fff;
}

.pagination a:hover {
    background: #eee;
}

.pagination a.active, .pagination a:active {
    border-color: var(--global-home-color);
    background: var(--global-home-color);
    color: #fff;
}


.checkbox-wrapper-21 .control {
    display: block;
    cursor: pointer;
    font-size: 18px;
}

.checkbox-wrapper-21 .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkbox-wrapper-21 .control__indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    width: 20px;
    background: #e6e6e6;
}

.checkbox-wrapper-21 .control__indicator-base {
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    position: relative;
}

.checkbox-wrapper-21 .control:hover input ~ .control__indicator-base,
.checkbox-wrapper-21 .control input:focus ~ .control__indicator-base,
.checkbox-wrapper-21 .control:hover input ~ .control__indicator,
.checkbox-wrapper-21 .control input:focus ~ .control__indicator {
    background: #ccc;
}

.checkbox-wrapper-21 .control input:checked ~ .control__indicator-base,
.checkbox-wrapper-21 .control input:checked ~ .control__indicator {
    background: var(--global-home-color);
}

.checkbox-wrapper-21 .control:hover input:not([disabled]):checked ~ .control__indicator-base,
.checkbox-wrapper-21 .control input:checked:focus ~ .control__indicator-base,
.checkbox-wrapper-21 .control:hover input:not([disabled]):checked ~ .control__indicator,
.checkbox-wrapper-21 .control input:checked:focus ~ .control__indicator {
    background: var(--global-home-color);
}

.checkbox-wrapper-21 .control input:disabled ~ .control__indicator-base,
.checkbox-wrapper-21 .control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.checkbox-wrapper-21 .control__indicator-base:after,
.checkbox-wrapper-21 .control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.checkbox-wrapper-21 .control input:checked ~ .control__indicator-base:after,
.checkbox-wrapper-21 .control input:checked ~ .control__indicator:after {
    display: block;
}

.checkbox-wrapper-21 .control--checkbox .control__indicator-base:after,
.checkbox-wrapper-21 .control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.checkbox-wrapper-21 .control--checkbox input:disabled ~ .control__indicator-base:after,
.checkbox-wrapper-21 .control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}


.main {
    margin-top: 135px;
    padding: 3rem 1rem;
}

.page-title {
    display: flex;
    justify-content: start;
    align-items: center;
}

.page-title h1 {
    font-weight: 600;
    font-size: 1.2rem;
}

.page-title img {
    width: 24px;
    margin-right: 0.25rem;
}

.page-title p {
    margin-top: 0.1rem;
    font-size: 0.9rem;
}

.input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.input-border {
    border: 1px solid #e2e5e8 !important;
    border-radius: 4px;
}

#login {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F4F4F4;
}

#login .login-box {
    width: 100%;
    max-width: 250px;
}

.login-box form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.login-box form h1 {
    font-weight: 700;
    color: #7F7F7F;
    font-size: 1.2rem;
}

.login-box form img {
    width: 200px;
}

.login-box form input {
    width: 100%;
    max-width: 250px;
    background-color: #FFF;
    padding: 0.7rem 0.3rem;
    border: 1px solid var(--bright-border-color);
}

.login-box form .login-action {
    width: 100%;
}

.login-box form .login-action #submit {
    background-color: var(--global-home-color);
    color: #FFF;
    font-weight: 600;
    width: 100%;
    padding: 0.7rem 0;
    border: none;
    border-radius: 6px;
}

.approval-list, .worker-list, .worker-day-off-list, .work-place-list {
    padding: 2rem 0;
}

.worker-approval #approval-add-btn, .worker-manage #worker-add-btn, .worker-manage #del-sign-btn, .work-place-setting #add-work-place-btn {
    background-color: var(--global-home-color);
    color: #FFF;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 3rem;
}

.worker-approval #approval-add-btn:hover, .worker-manage #worker-add-btn:hover {
    background-color: var(--global-dark-home-color);
}

.main table {
    margin-top: 1rem;
}

.worker-approval .approval-list table td,
.worker-manage .worker-list table td,
.worker-day-off-list table td,
.work-place-list table td {
    text-align: center;
}

.worker-manage .worker-list table .imei-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 51px 0 0.5rem;
    position: relative;
}

.worker-manage .worker-list table .imei-wrapper .init-imei-btn{
    background-color: var(--global-home-color);
    color: #FFF;
    border: none;
    padding: 0.3rem 0.4rem;
    margin-left: 0.5rem;
    min-width: 51px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0,-50%);
}

.worker-manage .worker-list table .manage-btns {
    display: flex;
    gap: 4px;
    justify-content: space-around;
}

.manage-btns button {
    width: 45%;
    color: #FFF;
    border: none;
    padding: 0.3rem 0;
}

.manage-btns.more-btn button {
    width: 30%;
              }

.manage-btns .bold-color {
    background-color: red;
}

.manage-btns .bold-color:hover {
    background-color: #de0000;
}

.manage-btns .home-color {
    background-color: var(--global-home-color);
}

.manage-btns .home-color:hover {
    background-color: var(--global-dark-home-color);
}

.main .list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main .list-header .right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main .right-section .search-bar {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.search-bar select, .search-bar input {
    height: 35px;
    padding: 0 0.4rem;
    border: 1px solid var(--bright-border-color);
}

.search-bar select {
    min-width: 100px;
}

.search-bar input {
    min-width: 200px;
}

.search-bar button {
    background-color: var(--global-home-color);
    color: #FFF;
    border: none;
    padding: 0 1.5rem;
    height: 35px;
}

.search-bar button:hover {
    background-color: var(--global-dark-home-color);
}

.main #excel-down-btn, .main #search-work-place-btn {
    background-color: var(--global-home-color);
    color: #FFF;
    border: none;
    border-radius: 3px;
    padding: 0 1.5rem;
    height: 35px;
    margin-left: 1rem;
}

.main #excel-down-btn:hover, .main #search-work-place-btn:hover {
    background-color: var(--global-dark-home-color);
}

#worker-info-popup .worker-form table td {
    text-align: center;
    position: relative;
}

.add-popup table td:first-child,
#worker-info-popup .worker-form table td:first-child {
    width: 30%;
    background-color: #FAFAFA;
}

.add-popup table td:last-child,
#worker-info-popup .worker-form table td:last-child {
    width: 70%;
}

.add-popup table td input, .add-popup table td select,
#worker-info-popup .worker-form table td input, #leave-company-popup table td input, #worker-info-popup table td select, #add-template-popup table td textarea {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 0.4rem;
}


#worker-info-popup .worker-form #edit-work-place-btn {
    background-color: var(--global-home-color);
    color: #FFF;
    border: none;
    border-radius: 3px;
    padding: 0.45rem 1rem;
    margin-bottom: 0.5rem;
}

#work-place-popup table td, .add-popup table td {
    text-align: center;
}

.add-popup table th:first-child, .add-popup table td:first-child {
    #work-place-popup table
    th: first-child, #work-place-popup table
    td: first-child
    background-color: #FAFAFA;
}

#leave-company-popup table td {
    text-align: center;
    position: relative;
}

#leave-company-popup table td:first-child {
    background-color: #FAFAFA;
    width: 30%;
}

#leave-company-popup table td:last-child {
    width: 70%;
}

.total-table {
    margin-bottom: 2rem;
}

.total-table th {
    background-color: #F2F2F2;
}

.filter-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--bright-border-color);
    margin-right: 1rem;
}

.filter-box .title {
    border-right: 1px solid var(--bright-border-color);
    min-width: 100px;
    line-height: 35px;
    text-align: center;
    background-color: #F2F2F2;
}

.filter-box .form {
    overflow: hidden;
}

.filter-box .form.start-date {
    border-right: 1px solid var(--bright-border-color);
}

.filter-box .form > select, .filter-box .form > input {
    height: 35px;
    border: none;
}

.filter-box .form > select {
    padding-left: 0.4rem;
    padding-right: 4rem;
}

.filter-box .form > input {
    padding: 0 0.4rem;
}

#work-type-btn, .down-pdf-btn, #down-photo-btn {
    width: 90%;
    background-color: var(--global-home-color);
    color: #FFF;
    border: none;
    padding: 0.4rem 0;
}

#modify-work-place-btn{
    background-color: var(--global-home-color);
}
.check-table th {
    background-color: #F2F2F2;
}

#work-type-popup .type-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--bright-border-color);
    border-bottom: 1px solid var(--bright-border-color);
    padding: 1rem 0;
}

#work-type-popup .type-list li {
    display: flex;
    align-items: center;
}

#work-type-popup .type-list li .checkbox-wrapper-21 {
    flex: 0 0 10%;
}

#work-type-popup .type-list li p {
    font-size: 1.1rem;
    padding: 0.5rem;
    flex: 0 0 30%;
}

#work-type-popup .type-list li > input {
    flex: 0 0 60%;
    border: 1px solid var(--bright-border-color);
    height: 30px;
    padding: 0 0.2rem;
}

#add-work-place-popup .place-form {
    display: flex;
    flex-direction: column;
}

#add-work-place-popup .place-form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.search-addr-wrapper {
    text-align: right;
}

#add-work-place-popup .search-addr-wrapper #search-address-btn {
    width: 70%;
    color: #FFF;
    background-color: var(--global-home-color);
    border: none;
    padding: 0.35rem 0;
    margin-bottom: 1.5rem;
}

#add-work-place-popup .place-form .form-group p {
    flex: 0 0 30%;
}

#add-work-place-popup .place-form .form-group input {
    flex: 0 0 70%;
    height: 35px;
    border: 1px solid var(--bright-border-color);
    padding: 0 0.5rem;
}


#add-work-place-popup .place-form .form-group .select-week {
    display: flex;
    width: 100%;
}

#add-work-place-popup .place-form .form-group .select-week .week {
    flex: 0 0 14%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0.5rem;
}

#add-work-place-popup .map-container .addr-info {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--bright-border-color);
}

.map-container .addr-info .addr-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.addr-item .title {
    flex: 0 0 30%;
}

.addr-item .cords {
    flex: 0 0 70%;
}

.addr-item .cords input {
    height: 35px;
    border: 1px solid var(--bright-border-color);
    padding: 0 0.5rem;
    width: 100%;
}

#edit-work-place-popup .place-form h4 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

#edit-work-place-popup table th {
    background-color: #F2F2F2;
}

#edit-work-place-popup table td {
    text-align: center;
    position: relative;
}

#edit-work-place-popup table td:first-child {
    background-color: #F2F2F2;
}

#edit-work-place-popup table td input,
#edit-work-place-popup table td select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 0.5rem;
}

#edit-work-place-popup table td input:disabled,
#edit-work-place-popup table td select:disabled {
    display: none;
}

#edit-work-place-popup .place-form .work-place-filter-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    line-height: 35px;
    margin-bottom: 1.5rem;
}

#edit-work-place-popup .place-form .work-place-filter-wrapper .filter-box .form {
    width: 100%
}

#edit-work-place-popup .place-form .work-place-filter-wrapper .filter-box .form > select {
    padding-right: 0;
    width: 100%;
}

#edit-work-place-popup .place-form .work-place-filter-wrapper .place-name {
    font-weight: 500;
    background-color: #F2F2F2;
    border: 1px solid var(--bright-border-color);

}

#edit-work-place-popup .place-form .work-place-filter-wrapper .place-name input {
    width: 100%;
    height: 35px;
    padding: 0 0.5rem;
    border: none;
    text-align: center;
}

#edit-work-place-popup .place-form .work-place-filter-wrapper > div {
    width: 23%;
}

#edit-work-place-popup .place-form .day-off-box {
    border: 1px solid var(--bright-border-color);
    display: flex;
}

#edit-work-place-popup .place-form .day-off-box > div {
    background-color: #F2F2F2;
    text-align: center;
    height: 35px;
    line-height: 35px;
    width: 50%;
}

#edit-work-place-popup .place-form .day-off-box > div:first-child {
    border-right: 1px solid var(--bright-border-color);
}

.summary .summary-wrapper {
    display: flex;
    padding: 2rem 0;
}

.summary .summary-date input {
    padding: 0.5rem;
    width: 100%;
    max-width: 160px;
    border: 1px solid var(--bright-border-color);
    border-radius: 6px;
}

.summary .summary-wrapper .left-section {
    flex: 0 0 40%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary .summary-wrapper .left-section .status-box {
    width: 45%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0.5rem 0;
    font-size: 1.2rem;
}

.summary .summary-wrapper .left-section .status-box p:last-child {
    font-weight: 600;
}

.summary .summary-wrapper .right-section {
    flex: 0 0 60%;
    border: 1px solid var(--bright-border-color);
    border-radius: 6px;
    padding: 1rem;
}

.summary .summary-wrapper .section-title {
    font-size: 1.2rem;
}

.summary .summary-wrapper .summary-table {
    width: 100%;
}

.summary .summary-wrapper .summary-table td {
    padding: 0.6rem 0.5rem;
    text-align: center;
}

.summary .summary-wrapper .summary-table td:first-child {
    background-color: #F2F2F2;
    width: 30%;
}

.summary .summary-wrapper .summary-table td:last-child {
    width: 70%;
}

.summary-monthly .summary .select-month {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 0;
}

.summary-monthly .summary .select-month p {
    font-size: 1.1rem;
}

.summary-monthly .summary .select-month button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.summary-monthly .summary .select-month button img {
    width: 20px;
}

.summary-monthly .summary .summary-wrapper {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--bright-border-color);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}


#update-radius-popup td:first-child{
    text-align: center;
}

#update-radius-popup td:last-child input{
    border: none;
    width: 100%;
    height: 100%;
    padding: 0 0.5rem;
}

.check-place-info{
    text-align: center;
    padding: 1rem;
}

.check-place-info h4{
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.check-place-info .outside-reason {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
}
.check-place-info .outside-reason p {
    font-size: 1rem;
}
.check-place-info .outside-reason input{
    border: 1px solid #EEE;
    padding: 0.5rem 0.5rem;
    min-width: 250px;
}

.form-textarea{
    padding: 0.5rem !important;
}



.card-title {
    font-size: 16px;
    margin-bottom: 1rem !important;
}

.manage-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.manage-btns button {
    width: 45%;
    min-width: 53px;
}

.summary-table td:first-child {
    background-color: #f5f6f8;
    width: 30%;
}

.summary-table td:last-child {
    width: 70%;
}

.summary-left-card span {
    font-size: 20px;
}

.weather-section {
    padding: 0.56rem;
    background: #FFF;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.weather-section .today-weather-card {
    width: 350px;
    border: 1px solid #EEE;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    padding: 1rem;
}

.today-weather-card .weather-place {
    font-size: 12px;
    display: flex;
}

.today-weather-card .weather-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.today-weather-card .weather-content .stick {
    height: 38px;
    width: 1px;
    background: #DBDBDB;
}

.today-weather-card .weather-content .weather-status * {
    display: block;
}

.other-day-weather {
    display: flex;
    align-items: center;
    margin: 0;
    list-style: none;
    gap: 2rem;
    flex: 1;
}

.other-day-weather .other-day-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.other-day-weather .other-day-item .weather-img {
    width: 92px;
}

.other-day-weather .other-day-item .temp {
    font-size: 14px;
}

.other-day-weather .other-day-item .date span {
    font-size: 12px;
    display: block;
    text-align: center;
}

.other-day-weather .other-day-item .temp .stick {
    color: #DBDBDB;
    margin: 0 0.5rem;
}

.other-day-weather .other-day-item .temp .low-temp {
    color: #3192ED;
}

.other-day-weather .other-day-item .temp .high-temp {
    color: #F86969;
}

.other-day-item .humidity {
    text-align: center;
}

.other-day-item .humidity-img {
    width: 14px;
}

.commute-chart {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    gap: 0.3rem;
    margin: 0;
    list-style: none;
}

.chart-legend .point {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
}

.chart-legend li:nth-child(1) .point {
    background: #0071FF
}

.chart-legend li:nth-child(2) .point {
    background: #7BD9D1
}

.chart-legend li:nth-child(3) .point {
    background: #38CFFF
}

.chart-legend li:nth-child(4) .point {
    background: #B6EE8B
}

.chart-legend li:nth-child(5) .point {
    background: #0022D7
}

.chart-legend li:nth-child(6) .point {
    background: #2D97EE
}

.chart-legend li:nth-child(7) .point {
    background: #C796F9
}

.chart-legend li:nth-child(8) .point {
    background: #59BCDE
}

.chart-legend li:nth-child(8) .point {
    background: #6f787f
}

.work-time-list {
    justify-content: space-between;
    max-height: 240px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.work-time-list::-webkit-scrollbar {
    display: none;
}

.work-time-list .label-list-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #D9D9D9;
    padding: 0.5rem;
    width: calc(50% - 10px);
}

.work-time-list .label-list-item .label {
    width: 70px;
    display: inline-block;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.work-time-list .label-list-item .bottom-content .label {
    color: #AEAEAE;
}

.work-time-list .label-list-item .timeline, .work-time-list .label-list-item progress
{
    flex: 1;
}

.work-time-list .label-list-item progress {
    height: 14px;
    appearance: none;
}

.work-time-list .label-list-item  progress::-webkit-progress-bar {
    background: #F3F6FA;
    border-radius: 10px;
    box-shadow: inset 3px 3px 10px #ccc;
}

.work-time-list .label-list-item:nth-child(3n+1) progress::-webkit-progress-value
{
    border-radius: 10px;
    background: #0071FF;
}

.work-time-list .label-list-item:nth-child(3n+2) progress::-webkit-progress-value
{
    border-radius: 10px;
    background: #7BD9D1;
}

.work-time-list .label-list-item:nth-child(3n+3) progress::-webkit-progress-value
{
    border-radius: 10px;
    background: #38CFFF;
}

.work-time-list .label-list-item .top-content, .work-time-list .label-list-item .bottom-content
{
    display: flex;
    align-items: center;
}

.work-time-list .label-list-item .timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    color: #AEAEAE;
    font-size: 10px;
    position: relative;
    height: 100%;
}

.timeline li {
    position: absolute;
    top: 0;
}

.timeline li:nth-child(1) {
    left: 0;
}

.timeline li:nth-child(2) {
    left: 50%;
}

.timeline li:nth-child(3) {
    left: 100%;
}

.not-exist-list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.right-table {
    flex: 1;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.right-table::-webkit-scrollbar {
    display: none;
}

.right-table table thead td {
    background-color: #02539F;
    color: #FFF;
}

.right-table table {
    border: 1px solid #EEE;
}

.right-table table td {
    text-align: center;
}

.work-time-table-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.work-time-date {
    display: flex;
    justify-content: flex-end;
    font-weight: 700;
}


.card-title {
    font-size: 16px;
    margin-bottom: 1rem;
}

.manage-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.manage-btns button {
    width: 45%;
    min-width: 53px;
}

.summary-table td:first-child {
    background-color: #f5f6f8;
    width: 30%;
}

.summary-table td:last-child {
    width: 70%;
}

.summary-left-card .card-body {
    padding: 0.56rem;
}

.sel-month-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.sel-month-wrapper button {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
}

.sel-month-wrapper button span {
    color: black;
}

.no-commute-reason {
    max-height: 400px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    align-items: stretch;
    margin: 0 auto;
}

.no-commute-reason::-webkit-scrollbar {
    display: none;
}

.no-commute-reason .reason-item {
    display: flex;
    border-bottom: 1px solid #EEEEEE;
    padding: 0.75rem 0.625rem;
    height: fit-content;
    min-height: 42px;
}

.no-commute-reason .label {
    width: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.no-commute-reason .label span {
    display: block;
    font-size: 13px;
}

.no-commute-reason .label span:last-child {
    color: #AEAEAE;
}

.no-commute-reason .reason-title {
    width: 90px;
    background-color: #F3F6FA;
    color: #02539F;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.no-commute-reason .reason-content {
    color: #666666;
    flex: 1;
    font-size: 14px;
    padding: 0 0.5rem;
}

.margin-height {
    height: calc(100% - 20px);
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.significant-status {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.significant-status .left-box {
    width: 200px;
    height: 200px;
    border: 1px solid #EEE;
}

.significant-status .left-box span {
    font-size: 20px;
    font-weight: 800;
}

.significant-status .right-table {
    flex: 1;
    max-height: 200px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.significant-status .right-table::-webkit-scrollbar {
    display: none;
}

.significant-status .right-table table thead td {
    background-color: #02539F;
    color: #FFF;
}

.significant-status .right-table table {
    border: 1px solid #EEE;
}

.significant-status .right-table table td {
    text-align: center;
}

.flex-row-center {
    justify-content: center;
}

canvas {width: 100%}