﻿:root {
    --main-color: rgba(246,87,21, .9);
    --header-height: 68px;
}


body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-size: 14px;
    background-color: #f9f9f9;
}
ul,ol {
    list-style: none;
}
a {
    text-decoration: none;
}
html, body, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 14px;
}
body.no-scroll {
    overflow: hidden;
}
.no-scroll {
    height: 100%;
    min-height: 100%;
    overflow: hidden !important;
    touch-action: none;
}

/*버튼*/
.btn-m {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: rgba(246, 87, 21, .9);
    color: #fff;
    padding: 8px;
    width: 120px;
    font-size: .9rem;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}
.btn-s {
    min-width: initial;
    padding: 6px;
    font-size: 13px;
}
.btn-l {
    background-color: rgba(0, 0, 0, .7);
}

.btn-m:active {
    background-color: rgba(246, 87, 21, 1);
}
.btn-l:active {
    background-color: rgba(0, 0, 0, .9);
}

/*HEADER*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
    border-bottom: 1px solid #ddd;
    z-index: 100;
}
.header-box {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
   /* padding: 0 34px;*/
}
.header-logo {
    height: 100%;
    padding: 0 34px;
    display: flex;
    place-items: center;
}
.header-logo > span{
    font-size: 1.5rem;
    font-weight: bold;
}
.header-alarm {
    display: grid;
    place-items: center;
    height: 100%;
    padding: 0 34px;
}
.header-alarm > img {
    max-width: 22px;
}

/*NAV*/
.nav_container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    border: 1px solid #ddd;
    z-index: 100;
}
.nav_list {
/*    display: flex;
    justify-content: space-between;
    align-items: center;*/
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    place-items: center;
    height: 100%;
    padding: 0 10px;
}
.nav_item {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}
.nav_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #333;
    font-size: 12px;
}
.nav_img {
    max-width: 22px;
}


/* 오버레이 백그라운드 커버 */
#bgCover {
    animation: fade-out 0.5s;
    animation-fill-mode: forwards;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 101;
    animation: fade-out 0.5s;
    animation-fill-mode: forwards;
}

#bgCover.bgCoverShow {
    display: block;
    animation: fade-in 0.5s;
    animation-fill-mode: forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/*SIDEMENU*/
#sideMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    z-index: 110;
    transform: translateX(300px);
    transition: transform 0.4s ease-in-out;
}
#sideMenu.show {
    transform: translateX(0);
}

.side__box{
    padding: 16px;
}
.side__box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--main-color);
}
.side__box-top-r{
    display: flex;
    gap: 12px;
}
.side__box-profile {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--main-color);
    color: #fff;
    font-size: .7rem;
    padding-top: 0;
}
.side-x{
    width: 15px;
    height: 15px;
}
.side-set {
    width: 20px;
}
.side-name{
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: bold;
}
.side__box-profile .side-img > img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.side__box-profile .side__item-name{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.side__item-id {
    font-weight: bold;
    font-size: 1.1rem;
}
.side__box-menu{
    display: flex;
    flex-direction: column;
    border-bottom: 5px solid #eee;
    padding: 0;
}
.side__box-menu .side__item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eee;
}
.side__box-menu .side__item:last-child{
    border-bottom: none;
}

.side-icon {
    max-width: 15px;
}
.side__box-service{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.side__box-service h3{
    font-weight: bold;
}
.side__box-service ul {
    display: flex;
    flex-direction: column;
}
.side__box-service ul li {
    display: flex;
    align-items: center;
    gap: 14px;
}
.side__box-service ul li h4{
    color: #999;
}
.serv-b{
    font-weight: bold;
    font-size: 16px;
    color: var(--main-color);
}
/*페이지*/
.m-content {
    margin: var(--header-height) auto 78px;
    padding: 20px;
    max-width: 575px;
}
.m-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px 20px;
}
    .m-header h1 {
        font-size: 16px;
        font-weight: bold;
        line-height: 26px;
        color: #333;
    }
.m-header h2 {
    font-size: 1.2rem;
    font-weight: bold;
}
.m-body {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    font-size: 13px;
}
.m-select {
    margin: 0 0 20px;
}
.m-list{
    display: flex;
    flex-direction: column;
}
/*MAIN*/
.m-main {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.main__content {
    height: 100px;
}
.main__content-1 {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    
}
.main__content-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.main__box {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 12px;
    color: #111a51;
    color: #090909;
    font-weight: bold;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #d3d3d3;
    transition: all 0.3s;
/*    box-shadow: 6px 6px 12px #c9c9c9, -6px -6px 12px #ffffff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;*/
}
.main__box-11 {
    color: rgba(255, 0, 0 ,.9);
}
.main__box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
    opacity: .7;
    z-index: -1;
}
.main__box-1::before {
    background-image: url('/images/b1.png');
    background-repeat: no-repeat;
    background-position: right 10px bottom 10px;
    background-size: 120px auto;
}
.main__box-11::before {
    background-image: url('/images/b1.png');
    background-repeat: no-repeat;
    background-position: right 10px bottom 10px;
    background-size: 68px auto;
}
.main__box-2::before {
    background-image: url('/images/b2.png');
    background-repeat: no-repeat;
    background-position: right 5px bottom 10px;
    background-size: 78px auto;
} 
.main__box-3::before {
    background-image: url('/images/b4.png');
    background-repeat: no-repeat;
    background-position: right 5px bottom 10px;
    background-size: 60px auto;
}
.main__box-4::before {
    background-image: url('/images/b3.png');
    background-repeat: no-repeat;
    background-position: right 5px bottom 10px;
    background-size: 42px auto;
}




.main__box:active {
    color: #666;
/*    box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;*/
    border: 1px solid #aaa;
}

.m-trs {
    padding: 20px 0 0;
}

.trs-btn {
    background-color: rgba(33,219,108, .5);
    background-color: rgba(104,217,121, .3);
    background-color: #e8e8e8;
    border: 1px solid rgba(33,219,108, .7);
    border: 1px solid rgba(104,217,121, .5);
    border: 1px solid #d3d3d3;
    display: grid;
    place-items: center;
    height: 52px;
    border-radius: 10px;
    color: #090909;
    /*    color: #fff;*/
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

    .trs-btn:active {
        color: #666;
        border: 1px solid rgba(180,199,231, 1);
    }


/*LIST*/
.list__inner {
    padding: 14px;
    border-bottom: 1px solid #eee;
}
.list__inner:last-child{
    border-bottom: none;
}
.list__cotent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
    .list__cotent .accord-btn {
        display: flex;
        justify-content: flex-end;
        padding-top: 10px;
    }
    .m-notice .list__cotent {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
.list__box {
    display: flex;
    width: 100%;
}
.list__box-state {
    flex-direction: row-reverse;
}
.list__item-date {
    min-width: 74px;
    color: #999;
}
.state{
    color: var(--main-color);
    font-weight: bold;
}
.state-n {
    color: #FA5600;
}
.state-b {
    color: #4075f3;
}
.list__item-name {
    font-weight: bold;
}
.accord-d {
    display: none;
    background-color: #f3f3f3;
    padding: 12px;
    margin: 12px 0 0;
    border-radius: 5px;
}
.accord-d .list__box{
    padding: 0 0 10px;
}
.accord-d .list__box:last-child{
     padding: 0;
}
.accord-d .list__item-t {
    min-width: 68px;
    color: var(--main-color);
    font-weight: bold;
    font-size: .8rem;
    line-height: 1.2rem;
}
/*SET*/
.m-set .form-control{
    font-size: 13px;
}
.set__box-form {
    width: 100%;
}
.set__inner {
    padding: 14px;
}
.set__inner-s {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.set__inner-a {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.set__inner-c{
    color: #aaa;
}
.set__inner-b{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.set__inner-i {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #777;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.set__inner-i > span {
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0 5px;
}
.set__box-d {
    min-width: 30px;
}
.set__content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.align-start {
    align-items: flex-start;
}
.set__box-t{
    min-width: 90px;
    color: #333;
    font-weight: bold;
}
.set__content-notice{
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.set__content-notice textarea{
    min-height: 150px;
}
.set__content-star{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.set__content-star p{
    color: #333;
    font-weight: bold;
}
.set-check > ul {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.set-check>ul>li{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.set-check p{
    color: #aaa;
}
/*VIEW*/
.m-tab {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #f9f9f9;
}
.view__inner{
    display: flex;
    flex-direction: column;

}
.view__inner-a {
    background-color: #f3f3f3;
    margin: 14px;
    border-radius: 5px;
}
.view__content {
    padding: 14px;

}
.view__content-t {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.view__content-ta {
    display: flex;
    justify-content: space-between;
    gap: 3px;
}
.view__content-d {
    border-top: 1px solid #eee;
}
.view__content-img {
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.view__content-img>img{
    max-width: 150px;
}
.view__box-t {
    font-weight: bold;
}
.view__box-d {
    display: flex;
    justify-content: flex-end;
    color: #999;
}

.tabnav {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.tabnav li {
    text-align: center;
    background: #fff;
}

    .tabnav li a {
        display: inline-block;
        padding: 12px;
        width: 100%;
        height: 100%;
        font-size: 13px;
        color: #333;
    }
    .tabnav li a.active {
        background: #111A51;
        color: #fff;
    }

.tabcontent {
    background-color: #fff;
    color: #333;
    border-radius: 5px;
}
.tab-btn{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 14px;
    border-top: 1px solid #eee;
}
/*앱 접근권한*/
.m-access{
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.m-access h1 {
    font-size: 1.5rem;
    font-weight: bold;
}
.m-access h2 {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 0 10px;
}
.m-access p{
    color: #aaa;
}
.access-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.access-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.access-box img {
    width: 32px;
    height: 32px;
}
.access-box ul{
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.access-box li{
    font-weight: bold;
}
    .access-box li span {
        font-weight: 500;
        color: #aaa;
    }

.access-btn {
    display: flex;
    justify-content: center;
}
.access-btn .btn-m{
    width: 100%;
}
/*MODAl*/
.modal-content {
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 300px;
    max-height: 90%;
    height: auto;
    /*overflow: scroll;*/
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .modal-content .table-responsive label {
        margin-bottom: 10px;
    }

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

    .modal-header > h5 {
        font-size: 1.3rem;
        font-weight: 600;
    }

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    height: auto;
    overflow: scroll;
}

.modal-body__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-body__box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-body__box-top {
    align-items: flex-start;
}

.modal-body__box-label {
    min-width: 100px;
    color: #888;
    font-weight: 500;
}

.modal-body-search {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.modal-content .btn-m{
    width: initial; 
    border-radius: 5px;
    padding: 8px 12px;
}
.modal-d{
    color: #aaa;
}

.star_rating {
    box-sizing: border-box;
    display: inline-flex;
    float: left;
    flex-direction: row;
    justify-content: flex-start;
}

.star_rating .star {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    display: inline-block;
    background: url('/images/icons/star-b.png') no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}

.star_rating .star.on {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    display: inline-block;
    background: url('/images/icons/star.png') no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}

/*알람*/
.m-alarm .list__cotent {
    align-items: flex-start;
}
.list__box-alarm {
    flex-direction: column;
    gap: 5px;
}
.m-alarm .list__item-date {
    min-width: initial;
}
.list__item-name {
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}
.list__item-content {
    color: #777;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 라인수 */
    -webkit-box-orient: vertical;
}

/*알람추가*/
.m-alarm .list__cotent-new {
    display: none;
}

.m-alarm .new-alarm {
    position: relative;
}

    .m-alarm .new-alarm .list__cotent-new {
        display: block;
        position: absolute;
        left: 5px;
        top: 10px;
        width: 5px;
        height: 5px;
        background: #f44336;
        border-radius: 50%;
    }
/*알람 수정*/
.alarm__content{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.alarm__content-h{
    display: flex;
    gap: 5px;
}
.alarm-title {
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}
.alarm-date {
    color: #999;
    min-width: 84px;
    display: flex;
    justify-content: flex-end;
}
.alarm-description {
    color: #777;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 라인수 */
    -webkit-box-orient: vertical;
}

/*계정탈퇴*/
.m-delete {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 14px;
}

    .m-delete p {
        margin: 20px 0;
        font-size: 1.2rem;
        color: #333;
    }

    .m-delete ul {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin: 0 0 30px;
    }

        .m-delete ul li {
            line-height: 1.3rem;
        }

    .m-delete .btn-m {
        margin: 0 auto;
        width: 100%;
    }

.del-check {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: #777;
}

    .del-check input[type=checkbox] {
        margin: 0;
    }

/*번역*/
.m-trans{
    background: #fff;
    padding: 0;
}
.trans-header{
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid #ddd;
}
.trans-header select{
    border: none;
    background-color: #fff;
}
.trans-header select:focus{
    outline: none;
}
.tl-ar {
    display: grid;
    place-items: center;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 15px;
    
}

.tl-arrow {
    height: 10px;
    transition: ease-out 0.5s;
}
.tl-arrow:active {
    transform: scale(0.7);
}
.trans-body{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.tl-x-img{
    width: 12px;
}
.tl-x{
    display: flex;
    justify-content: flex-end;
    padding: 0 14px;
}
.trans-body .tl-sd{
    margin-left: 14px;
}
.trans-body textarea {
    width: 100%;
    min-height: 50px;
    border: none;
    outline-color: none;
    border-bottom: 1px solid #eee;
    padding: 14px;
    overflow-y: hidden;
    resize: none;
}
.trans-body textarea:focus{
    outline: none;
}
.trans-footer{
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tl-sd {
    display: grid;
    place-items: center;
    width: 42px;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 15px;
}
.tl-sound {
    width: 17px;
}
.tl-r {
    font-size: 1.5rem;
}
.tl-btn {
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.tl-btn span {
    display: block;
    background: var(--main-color);
    color: #fff;
    font-size: 1rem;
    width: 120px;
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    transition: ease-out 0.3s;
}
    .tl-btn span:active {
        background: rgba(246,87,21, .6);
    }
.tl-chat {
    position: fixed;
    top: 79%;
    left: 87%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    display: grid;
    place-items: center;
    border-radius: 50%;
}
    .tl-chat img{
        width: 25px;
    }
    .m-stt {
        height: 100vh;
        background: #fff;
        padding: 0;
        padding-bottom: 148px;
    }
.stt-50{
    position: relative;
    height: 50%;
    font-size: 1.1rem;
}
.stt-top {
    background: rgba(17,26,81, .9);
    color: #fff;
}
.stt-fix {
    position: absolute;
    right: 18px;
    bottom: 18px;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 109;
}
    .stt-fix select{
        background: none;
        border: none;
        height: 30px;
    }
    .stt-fix select:focus {
        outline: none;
    }
.stt-fix option{
    color: #333;
}
    .stt-mike {
        display: grid;
        place-items: center;
        width: 58px;
        height: 58px;
        background-color: rgba(246,87,21, .9);
        border-radius: 50%;
    }
.stt-fix2 {
    position: absolute;
    right: 38px;
    top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index:109;

}
.stt-sound {
    width: 20px;
}
.stt-x {
    width: 15px;
    height: 15px;
}

.stt-body {
    position: absolute;
    top: 0;
    padding: 55px 25px 30px;
    max-width: 100%;
    overflow: hidden;
}

.stt-inner {
    max-height: 197px;
    overflow-y: auto;
}

#final_span2 {
    display: block;
}

/*토글버튼*/
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.toggle-switch .toggle-input {
    display: none;
}

.toggle-switch .toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 24px;
    background-color: #ddd;
    border-radius: 34px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-switch .toggle-label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background-color: #fff;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}


.toggle-switch .toggle-input:checked + .toggle-label {
background-color: #4CAF50;
}

.toggle-switch .toggle-input:checked + .toggle-label::before {
    transform: translateX(16px);
}

/*출퇴근 메인*/
.m-cmt {
    padding: 20px 0 0;
}
.cmt__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.cmt__go{
    display: flex;
    justify-content: flex-end;
}
.cmt__go span{
    margin: 0 0 12px 12px;
    color: #777;
    font-size: .8rem;
}
.cmt__box {
    border-radius: 10px;
    padding: 12px;
    background: rgba(17,26,82, 1);
    background: #0068eb;
    background: rgba(88,165,165, .9);
    background: rgba(0,104,235, .7);
    color: #fff;
}
.cmt__box h3 {
    position: relative;
    font-weight: bold;
    padding-bottom: 5px;
    font-size: 1rem;
}
.cmt__box h3::after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url(/images/icons/next.png) no-repeat center;
    background-size: cover;
    right: 0;
    top: 3px;
}
    .cmt__box span {
        font-size: .9rem;
    }
.cmt__box p{
    padding: 3px 0 0;
    font-size: .6rem;
} 
.cmt__box.click {
    border: 1px solid #d3d3d3;
    background: #e8e8e8;
    color: #888;
}
.cmt__box.click h3::after {
    content: "";
    display: none;
}

/*출퇴근 기록*/
.m-commute .list__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.m-commute .list__inner::after {
    position: absolute;
    content: "";
    display: block;
    left: 76.66px;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: #eee;
}
.m-commute .list__inner ul li{
    display: flex;
    gap: 10px;
}
.cmt-tm {
    font-weight: bold;
}

/*메인 공지사항*/
.ntc__content {
    padding: 12px;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    background-color: #f1f1f1;
}
.ntc-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 5px;
}
    .ntc__content h4 {
        font-size: 18px;
        font-weight: bold;
    }
.ntc-more{
    width: 12px;
}
.ntc__table {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    border-collapse: collapse;
    overflow: hidden;
}
.ntc__table th,
.ntc__table td {
    padding: 6px 8px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 13px;
}
.ntc__table td {
    max-width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ntc__table tr:nth-child(n+5){
    display: none;
}
.dots-background {
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
}

.dots {   
    position:absolute;
    top:48vh;
    left:42vw;
    width: 88px;
    text-align: center;
    z-index:999;
}

    .dots > div {
        width: 25px;
        height: 25px;
        background-color: #f97f4d;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .dots .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .dots .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}