body {
    overflow: hidden;
}



.loading-view {
    display: none;

    height: 100vh;

    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;

    z-index: 30;

    background-color: rgba(0, 0, 0, 0.5);
}

.loading-text {
    z-index: 40;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 128px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

/* .loader */
#loading {
    position: relative;
    margin: 32px auto;
    width: 44px;
    height: 44px;

    height: calc(100vh - 128px);
}

#loading:before {
    content: "";
    display: block;
    padding-top: 100%;
}


/* .circular-loader */
.circular-loader {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;

    width: 100%;
    position: absolute;
    top: 0;
    left: 0;

    margin: auto;
}


/* .loader-path */
.loader-path {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@-webkit-keyframes color {
    0% {
        stroke: #e95024;
    }

    40% {
        stroke: #e95024;
    }

    66% {
        stroke: #e95024;
    }

    80%,
    90% {
        stroke: #e95024;
    }
}

@keyframes color {
    0% {
        stroke: #e95024;
    }

    40% {
        stroke: #e95024;
    }

    66% {
        stroke: #e95024;
    }

    80%,
    90% {
        stroke: #e95024;
    }
}








.view {
    height: 100vh;

    overflow: hidden;
    overflow-y: scroll;
}


.select-file {
    width: 100px;
}


#map {
    margin-left: 458px;
}


#select-nav {
    width: 68px;
    height: 100vh;

    background-color: #fff;
    border-right: 1px solid #ddd;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 10;
}

#select-nav>div {
    height: 100vh;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

    margin-top: 128px;
}

#select-nav>div button {
    width: 100%;
    height: 68px;

    border-bottom: 1px solid #ddd;
}

#select-nav>div button:first-child {
    border-top: 1px solid #ddd;
}

.button-view-map-dansok.on {
    color: #fff;
    background-color: #0475f4;
}

.button-view-file-dansok.on {
    color: #fff;
    background-color: #1d6f42;
}

.button-updown-wrap {
    width: 100%;
}


#side-view {
    margin-left: 68px;

    width: 100%;
    max-width: 390px;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 10;

    background-color: #fff;
    border-right: 1px solid #ddd;

    padding: 64px 0;
}







.mobile-nav-button-wrap {
    display: none;
}








#side-view-nav {
    position: absolute;
    top: 0;
    left: 68px;

    width: 100%;
    max-width: 390px;

    background-color: #fff;
    border-right: 1px solid #ddd;

    padding: 12px 20px;

    z-index: 20;
}

#side-view-nav>div {
    text-align: right;

    align-items: center;

    overflow-x: auto;
}

.menu-default {
    display: none;
}

.menu-default.on {
    display: flex;
}

.menu-input-on {
    display: none;
}

.menu-input-on.on {
    display: flex;
}

.menu-category-on {
    display: none;
}

.menu-category-on.on {
    display: flex;
}

.select-file {
    margin-right: auto;
}

.select-category {
    margin-right: auto;
}

#side-view-nav>div button {
    height: 40px;

    border: 1px solid #ddd;
    border-radius: 8px;

    margin-left: 4px;
    padding: 0 16px;

    flex-shrink: 0;
}

#side-view h2 {
    font-size: 36px;
    padding: 0 20px;
}

.module-tip {
    margin: 20px;
    padding: 20px;

    background-color: #f1f1f1;
    color: #505050;

    border-radius: 20px;

    font-size: 15px;
    line-height: 1.6;
}

.module-search {
    padding: 20px;
}

#input-address {
    width: 100%;
    height: 40px;

    background-color: #f5f5f5;
    border-radius: 12px;

    padding-left: 12px;
}


.module-date-input {
    padding: 20px;
}


.module-gyungro {
    padding: 20px;
}

.module-gyungro header {
    display: flex;
    flex-wrap: wrap;

    margin-bottom: 10px;
}


.module-gyungro .header-info {
    display: none;

    margin-top: 10px;

    justify-content: space-between;

    padding: 20px;
    background-color: #f1f1f1;
    color: #505050;

    border-radius: 20px;

    font-size: 15px;
    line-height: 1.6;

    width: 100%;
}

.location-category-count {
    padding-right: 4px;
}

.module-gyungro .button-select-category-item {
    height: 40px;

    border: 1px solid #ddd;
    border-radius: 8px;

    margin-left: auto;
    padding: 0 16px;

    flex-shrink: 0;
}

.module-gyungro .button-category-item-hide {
    height: 40px;

    border: 1px solid #ddd;
    border-radius: 8px;

    margin-left: 8px;
    padding: 0 16px;

    flex-shrink: 0;
}

.module-gyungro .input-title {
    line-height: 1.4;

    width: 100%;

    border: 1px solid;
    border-radius: 12px;

    margin-top: 12px;
    margin-bottom: 12px;
    padding: 12px;

    font-weight: bold;
}

.module-gyungro .input-title.hide {
    display: none;
}

.module-gyungro h3 {
    margin-left: 4px;

    line-height: 1.4;

    display: flex;
    align-items: center;
}

.module-gyungro.gyunggo h3 {
    margin-left: 4px;
    padding: 0 10px;

    line-height: 1.4;

    display: flex;
    align-items: center;

    background-color: red;
    color: white;

    border-radius: 12px;
}

.module-gyungro.dansok h3 {
    margin-left: 4px;
    padding: 0 10px;

    line-height: 1.4;

    display: flex;
    align-items: center;

    background-color: blue;
    color: white;

    border-radius: 12px;
}

.module-gyungro.gyunggo-item h3 {
    margin-left: 4px;
    padding: 0 10px;

    line-height: 1.4;

    display: flex;
    align-items: center;

    background-color: red;
    color: white;

    border-radius: 12px;
}

.module-gyungro.dansok-item h3 {
    margin-left: 4px;
    padding: 0 10px;

    line-height: 1.4;

    display: flex;
    align-items: center;

    background-color: blue;
    color: white;

    border-radius: 12px;
}

.location-time-wrap.hide {
    display: none;
}

.module-car-number-send-child.hide {
    display: none;
}



.list-wrap {
    border: 1px solid rgba(0, 0, 0, .5);
    border-radius: 12px;

    counter-reset: section;

    overflow: hidden;
}

.list-wrap.hide {
    display: none;
}

.list-item {
    border-bottom: 1px solid #ddd;

    counter-increment: section;

    position: relative;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item.on {
    background-color: #f5f5f5;
}

.list-count {
    opacity: .7;

    position: absolute;

    width: 40px;
    height: 40px;

    font-weight: bold;
    line-height: 40px;
    text-align: center;
}

.list-count:empty:before {
    content: counter(section);
}

.list-input {
    width: 100%;
    min-height: 40px;

    line-height: 1.6;

    padding: 8px 40px;
}

.list-re-input {
    display: none;

    width: 100%;
    min-height: 40px;

    line-height: 1.6;

    padding: 8px 40px;
}

.list-translate-address {
    display: none;

    color: #969696;
    font-size: 14px;
    line-height: 1.4;

    padding: 0 40px 12px;
}

.list-text-wrap {
    display: none;

    padding: 0 40px 12px;

    justify-content: space-between;
}

.list-text-km {
    font-size: 14px;
    line-height: 1.4;
}

.list-text-time {
    font-size: 14px;
    line-height: 1.4;
}


.button-wrap {
    padding-top: 12px;

    display: flex;
    justify-content: space-between;
}

.button-wrap button {
    height: 40px;

    border: 1px solid #ddd;
    border-radius: 8px;

    padding: 0 16px;
}




/* HTML Marker */
.icon {
    min-width: 20px;
    height: 20px;
    z-index: 5;

    background-color: red;

    border-radius: 20px;
    padding: 4px;

    font-style: normal;
    font-size: 14px;
    font-weight: bold;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
}













.searchlist-wrap {
    display: none;
}

.searchlist-info {
    background-color: #f1f1f1;
    padding: 8px 20px;
    font-size: 15px;
    border-top: 1px solid #ddd;
    color: #505050;
}

.searchlist-wrap button {
    text-align: left;

    width: 100%;
    padding: 20px;

    border-top: 1px solid #ddd;
}

.searchlist-item .title {
    line-height: 1.6;
}

.searchlist-item .past-address {
    line-height: 1.6;
}

.addresses {
    color: #969696;

    font-size: 14px;

    padding-top: 8px;
}

.addresses>* {
    line-height: 1.4;
}

.place-category {
    opacity: .5;
}
























.module-gyungro.select {
    background-color: #0475f4;
    color: #fff;
}

.module-gyungro.select * {
    border-color: #fff;
}















.date-input-wrap {
    width: 100%;
    border: 1px solid;
    border-radius: 12px;

    position: relative;

    margin-top: 8px;
}

.date-input-wrap:first-child {
    margin-top: 0;
}

.date-input-wrap input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
}

.date-input-wrap span {
    position: absolute;
    right: 0;

    line-height: 40px;
    text-align: center;

    width: 40px;
    height: 40px;
}

.location-time-wrap {
    padding: 0 0 12px;
}

.location-time-wrap input {
    width: 40px;
    height: 40px;
    border: 1px solid;
    border-radius: 12px;

    text-align: center;
    line-height: 40px;
}

.location-time-input-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.location-time-input-wrap span {
    width: 16px;
    text-align: center;
}










.button-start-time-now {
    border: 1px solid;
    height: 40px;
    border-radius: 12px;
}

.button-goal-time-now {
    border: 1px solid;
    height: 40px;
    border-radius: 12px;
}



















#print-view {
    background-color: #000;

    margin-left: 458px;
}

#print-view2 {
    background-color: #000;

    margin-left: 458px;
}

.print-view-wrap {
    margin: 0;
    padding: 0;

    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    /*box-sizing: content-box;*/
    box-sizing: border-box;

    width: 21cm;
    height: 29.7cm;

    padding: 1.6cm 1.4cm;
    margin: 0 auto;

    display: flex;
    background: white;

    overflow: hidden;
}

.print-view-wrap * {
    display: flex;

    page-break-before: always;

    /*box-sizing: content-box;*/
    box-sizing: border-box;
}

.print-view-wrap .all-wrap {
    border: 1px solid #000;
    width: 100%;

    flex-wrap: wrap;
}

.print-view-wrap .all-wrap>header {
    border-bottom: 1px solid #000;

    width: 100%;
    height: 1.7cm;
    /*height: 1.9cm; = box-sizing: content*/

    align-items: center;
    justify-content: center;
}

.print-view-wrap h2 {
    font-size: 48px;

    display: inline-block;
}

.print-view-wrap h2 * {
    display: inline-block;
}

.print-view-wrap .all-wrap>div {
    width: 100%;
    /*height: calc(1122.52px - 62px);*/
    height: 100%;
}

.print-view-wrap .all-wrap>div>section {
    width: 50%;

    height: fit-content;

    flex-wrap: wrap;
}

.print-view-wrap .all-wrap>div>section:first-child {
    border-right: 1px solid #000;
}

.print-view-wrap .all-wrap>div>section>header {
    border-bottom: 1px solid #000;

    width: 100%;
    height: 1.4cm;
    /*height: 1.6cm; = box-sizing: content*/

    align-items: center;
    justify-content: center;
}

.print-view-wrap h3 {
    font-size: 20px;
}

.print-view-wrap .all-wrap>div>section>div {
    border-bottom: 1px solid #000;

    width: 100%;
    height: 1.9cm;
    /*height: 2.1cm; = box-sizing: content*/

    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;

    padding: 0 24px;
}

.print-view-wrap .all-wrap>div>section>.car-kind-label {
    height: 1.05cm;
    /*height: 1.1cm;*/
    /*height: 1.3cm; = box-sizing: content*/

    padding: 0;
}

.print-view-wrap .all-wrap>div>section>.car-kind-label>div {
    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;
    text-align: center;
}

.print-view-wrap .all-wrap>div>section>.car-kind-label>div:first-child {
    border-right: 1px solid #000;
}

.print-view-wrap .all-wrap>div>section>.car-count {
    height: 1.4cm;
    /*height: 1.65cm; = box-sizing: content*/

    padding: 0;

    border-bottom: none;
}

.print-view-wrap .all-wrap>div>section>.car-count>div {
    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;
    text-align: center;
}

.print-view-wrap .all-wrap>div>section>.car-count>div:first-child {
    border-right: 1px solid #000;

    height: 100%;
}

/*
60
48
68
16
32
*/

#apple3 {
    margin: 0;
    padding: 0;

    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    box-sizing: border-box;

    width: 21cm;
    height: 29.7cm;

    padding: 1.6cm 1.4cm;
    margin: 0 auto;

    display: flex;
    background: white;
}

#apple3 .all-wrap {
    width: 404px;

    flex-wrap: wrap;
}

#apple3 .all-wrap>div {
    flex-wrap: wrap;

    border: 3px solid #000;
}

#apple3 .all-wrap>div>section {
    flex-wrap: wrap;
    flex-direction: column;

    width: 100%;
}

#apple3 .all-wrap>div>section>header:nth-child(1) {
    width: 100%;
    height: 33pt;

    border-bottom: 1px solid;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16pt;
    text-align: center;
}

#apple3 .all-wrap>div>section>header:nth-child(2) {
    width: 100%;
    height: 26.25pt;

    border-bottom: 1px solid;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16pt;
    text-align: center;
}

#apple3 .excel-gyunggo-item,
#apple3 .excel-dansok-item {
    display: flex;
    flex-wrap: wrap;
}

#apple3 .category-item {
    width: 100%;
}

#apple3 .item-header {
    width: 100%;
    min-height: 16.5pt;

    font-weight: bold;
    border-bottom: 1px solid;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11pt;
    text-align: center;
}

#apple3 .item-section {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
}

#apple3 .item-section>div {
    width: 25%;
    height: 16.5pt;

    border-right: 1px solid;
    border-bottom: 1px solid;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 9pt;
    text-align: center;
}

#apple3 .item-section>div:nth-child(4n+4) {
    border-right: none;
}

#apple3 .all-wrap>div>section>.footer-status {
    width: 100%;
    height: 18pt;

    font-weight: bold;
    border-bottom: 1px solid;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12pt;
    text-align: center;
}

#apple3 .footer-resault {
    width: 100%;
    height: 16.5pt;

    font-weight: bold;
    border-bottom: 1px solid;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11pt;
    text-align: center;
}

#apple3 div>section:last-child>.footer-resault:last-child {
    border-bottom: none;
}


@page {
    size: 21cm 29.7cm;
    margin: 15px
}

@media print {

    #header,
    .sub_visual,
    .utility_wrap,
    footer,
    .btn_wrap {
        display: none
    }

    .contents {
        padding: 0
    }
}

















.module-car-number-send {
    width: 100%;

    padding: 20px;
}

.module-car-number-send input {
    width: 100%;
    height: 40px;

    line-height: 1.6;

    padding: 8px 40px;
}

.select-category {
    width: 84px;
}



.module-car-number-send-child {
    border: 1px solid rgba(0, 0, 0, .5);
    border-radius: 12px;
    counter-reset: section;

    margin-bottom: 10px;
}

.module-car-number-send-child .car-number-input {
    width: 100%;
    height: 40px;
    line-height: 1.6;
    padding: 8px 40px;
}











.map-nav-button-wrap {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 50;

    padding: 40px 20px;
}

.button-move-point-position-now-clear {
    height: 40px;

    border: 1px solid #ddd;
    border-radius: 8px;

    padding: 0 16px;

    flex-shrink: 0;

    background-color: #fff;
}

.button-move-point-position-now {
    height: 40px;

    border: 1px solid #ddd;
    border-radius: 8px;

    padding: 0 16px;

    flex-shrink: 0;

    background-color: #fff;
}

.map-nav-position-juso-wrap {
    position: fixed;
    bottom: 0;
    left: 458px;
    right: 0;

    z-index: 49;

    padding: 20px 20px;

    width: 100%;

    background-color: #fff;

    border-top: 1px solid #ddd;
}












@media (max-width: 458px) {
    .map-nav-position-juso-wrap {
        left: 0;
    }

    #select-nav.show {
        display: flex;
    }

    #select-nav {
        display: none;

        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;

        z-index: 30;

        width: 100%;

        background-color: rgba(0, 0, 0, .5);

        flex-wrap: wrap;
        align-items: center;
    }

    #side-view-nav {
        left: 0;
        max-width: 100%;
    }

    #select-nav>div {
        flex-direction: initial;
    }

    .pc-nav-button-wrap {
        display: none;
    }

    .mobile-nav-button-wrap {
        display: flex;
    }

    #select-nav>div {
        background-color: #fff;
        height: fit-content;
        margin: 0 40px;
        border-radius: 20px;

        width: 100%;
        max-height: 380px;
        overflow-y: scroll;
    }

    #select-nav>div button:first-child {
        border-top: none;
    }





    #side-view {
        margin-left: 0;
        position: initial;

        max-width: 100%;
    }










    #map {
        display: none;
    }

    #map.mobile-on {
        position: absolute !important;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        z-index: 40;

        margin-left: 0;
        overflow: scroll;

        display: block;
    }

    #map+.mobile-nav-button-wrap {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;

        padding: 12px 20px;
    }
    #map+.mobile-nav-button-wrap,
    #map+.mobile-nav-button-wrap+.map-nav-button-wrap,
    #map+.mobile-nav-button-wrap+.map-nav-button-wrap+.map-nav-position-juso-wrap {
        display: none;
    }

    #map.mobile-on+.mobile-nav-button-wrap,
    #map.mobile-on+.mobile-nav-button-wrap+.map-nav-button-wrap,
    #map.mobile-on+.mobile-nav-button-wrap+.map-nav-button-wrap+.map-nav-position-juso-wrap {
        display: flex;
    }

    .button-mobile-view-cancel {
        height: 40px;
        border: 1px solid #ddd;
        border-radius: 8px;

        padding: 0 16px;
        flex-shrink: 0;
        background-color: #fff;
    }




    #print-view {
        display: none;
    }

    #print-view.mobile-on {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        z-index: 40;

        margin-left: 0;
        overflow: scroll;

        display: block;
    }

    #print-view .mobile-nav-button-wrap {
        display: none;

        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;

        padding: 12px 20px;
    }

    #print-view.mobile-on .mobile-nav-button-wrap {
        display: block;
    }

}