
#ajax-loader {
    background-color: rgba(128, 128, 128, 0.5);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 20vw;
}

.search-chips {
    white-space: nowrap;
    overflow-x: auto;
    padding: 0.2rem;
}

.operator-card {
    display: flex;
    margin-bottom: 1rem;
}

.operator-card > .left-container {
    flex-shrink: 0;
    width: 4.5rem;
    background-color: gray;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    border-right: 1px solid lightgrey;
    padding-bottom: 0.3rem;
    color: white;
}
.operator-card > .left-container.shuttle-boarded {
    background-color: rgb(73, 205, 245);
    color: black;
}

.operator-card > .left-container .list-number-text {
    background-color: gray;
    color: white;
    font-size: 0.8rem;
}
.operator-card > .left-container .status-text {
    flex: 1;
    font-size: 0.9rem;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.operator-card > .left-container .time-text {
    flex: 1;
    font-weight: bold;
    font-size: 1.3rem;
}
.operator-card > .left-container .shuttle-btn {
    padding: 0.3rem;
    background-color: rgb(73, 205, 245);
    font-size: 2rem;
}

.operator-card > .left-container.shuttle-boarded .shuttle-btn {
    display: none;
}

.operator-card > .left-container .shuttle-board-text {
    display: none;
}

.operator-card > .left-container.shuttle-boarded .shuttle-board-text {
    display: block;
    /*color: white;*/
}

.operator-card > .right-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.operator-card > .right-container > .model-container {
    display: flex;
    height: 2.3rem;
    border-bottom: 1px solid lightgrey;
    padding: 0 0.5rem;
    align-items: center;
    font-weight: 500;
}
.operator-card > .right-container > .model-container > .model-text {
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.operator-card > .right-container > .model-container  .car-badge {
    margin-left: 0;
    margin-right: 5px;
}

.operator-card > .right-container > .reservation-container {
    flex: 1;
    padding: 0.5rem;
}
.operator-card > .right-container > .reservation-container > .insurance-text {
    font-size: 0.9rem;
    color: gray
}
.operator-card > .right-container > .reservation-container > .check-list {
    margin-top: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 2px;
}
.operator-card > .right-container > .reservation-container > .check-list > .warn-badge {
    display: flex;
    background-color: yellow
}
.operator-card > .right-container > .reservation-container > .check-list > .warn-badge > .material-icons {
    font-size: 1.3rem;
    margin-right: 0.1rem
}

.operator-card > .right-container > .reservation-container .user-name {
    font-size: 1.2em;
    font-weight: bold;
}

.operator-card > .right-container > .reservation-container .unpaid {
    color: red;
}
.operator-card > .right-container > .reservation-container > .memo {
    margin-top: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}
.operator-card > .right-container > .reservation-container .memo-text {
    color: rgb(0, 122, 255);
    overflow: hidden;
    text-overflow: ellipsis;
}
.operator-card > .right-container > .reservation-container .memo-badge {
    padding: 0.1rem 0.3rem;
    font-size: 0.9rem;
    box-sizing: border-box;
    margin-right: 0.3rem;
}
.operator-card > .right-container > .reservation-container .fixed-car {
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
}

.input-field.boxed {
    padding: 0 1rem;
    border: 1px solid lightgray;
}
.input-field.boxed > input{
    border: none;
    margin: 0;
}

.list-total-search-title {
    margin-bottom: 1rem;
}
.list-total-search-btn {
    margin-top: 1rem;
    border-radius: 10px;
}

.round-btn {
    border-radius: 0.5rem;
    padding: 0 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.round-btn-small {
    border-radius: 0.5rem;
    padding: 0.2rem 0.5rem;
    font-size: inherit;
    height: inherit;
    line-height: inherit;
}

.outline-btn {
    display: flex;
    justify-content: center;
    background-color: white;
    color: #1a237e;
    border: 2px solid #1a237e;
    height: inherit;
    font-size: 1.2rem;
    font-weight: 500;
}
.outline-btn:hover{
    background-color: white;
}

.menu-title-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.form-title-text {
    font-size: 1.2rem;
    font-weight: 600;
}
.form-mid-text {
    font-size: 1rem;
    font-weight: 500;
}
.form-btn {
    padding: 0.3rem;
    width: 100%;
    text-align: center;
    line-height: inherit;
    height: inherit;
}
.form-bg-gray {
    background-color: #eeeeee;
}
.required::after {
    content: ' •';
    color: red;
}

.license-badge {
    padding: 0.3rem 0.5rem;
    font-size: 0.9rem;
    box-sizing: border-box;
    margin-right: 0.5rem;
    border-radius: 1rem;
    color: white;
    background-color: #343434;
}
.license-badge::before {
    content: "검증 미완";
}
.license-badge.verified {
    background-color: #03a9f4;
}
.license-badge.verified::before {
    content: "검증 완료"
}

.license-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
}
.license-icon .material-icons {
    color: #9fa8da;
}

.export-accent-container {
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 1rem;
    padding-top: 1rem;
}


/* filepond customize */
.filepond--image-preview-overlay {
    display: none !important;
}
.filepond--file-info {
    display: none !important;
}
.filepond--file-status {
    display: none !important;
}
.filepond--root .filepond--drop-label {
    top: calc(50% - 3rem);
}

.btn .btn-loader {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    color: black;
}

.btn .btn-loader .preloader-wrapper.small {
    width: 2rem;
    height: 2rem;
    position: absolute;
    left: calc(50% - 7rem);
}

.btn.disabled.loading .btn-loader {
    display: flex;
}
.btn.disabled.loading .only-enabled-text {
    color: transparent;
}

.license-validation-text .not-valid-text {
    color: red;
    display: none;
}
.license-validation-text.not-valid .not-valid-text {
    color: red;
    display: inline;
}
.license-validation-text .valid-text {
    color: blue;
    display: inline;
}
.license-validation-text.not-valid .valid-text {
    display: none;
}

.sign-preview-container {
    display: flex;
    align-items: center;
    height: 5rem;
    border: 1px solid #cfd8ea;
    border-radius: 1rem;
    margin: 1rem 0;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    justify-content: space-between;
}
.sign-preview-container .sign-driver-name {
    margin: 0 1rem;
    max-width: 6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sign-preview-container .sign-preview {
    flex: 1;
    height: 100%;
    background-color: #e7ecff;
    position: relative;
    max-width: 10rem;
    display: flex;
    justify-content: center;
}
.sign-preview-container .sign-preview span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}
.sign-preview-container .sign-preview img{
    height: 100%;
    width: auto;
}

.photo-box {
    min-width: 6rem;
    max-width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 1rem;
    margin: 0.5rem;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),
    0 3px 1px -2px rgba(0,0,0,0.12),
    0 1px 5px 0 rgba(0,0,0,0.2);
}
.photo-box img {
    height: 100%;
    width: 100%;
}
.photo-box .btn-loader {
    position: absolute;
}
.photo-add-btn {
    background-color: #eeeeee;
}
.photo-list {
    display: flex;
    flex: 1;
    overflow-x: auto;
}

.bordered {
    border: 1px solid #eeeeee;
}

.pad-container {
    position: relative;
    width: 100%;
}
.pad-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.photo-modal-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #000000;
}
.photo-modal-wrapper .photo-swiper {
    width: 100%;
    height: 100%;
    background-color: #000000;
}
.photo-modal-wrapper .swiper-slide {
    text-align: center;
    font-size: 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.photo-modal-wrapper .swiper-pagination-fraction {
    bottom: 0;
    color: white;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.page-info-container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    height: 2rem;
    margin-top: 1rem;
}
.page-info-container .sort-icon {
    transition: transform 0.3s ease-in-out;
}

.page-info-container .sort-icon.asc{
    transform: rotate(180deg);
}

.car-dispatched-th {
    background-color: #ffffff !important;
    color: #000000 !important;
}


.total-search-card {
    display: flex;
    margin-bottom: 1rem;
    flex-direction: column;
    overflow: hidden;
}
.total-search-card > .model-container {
    display: flex;
    height: 2.3rem;
    border-bottom: 1px solid #999999;
    padding: 0 0.5rem;
    align-items: center;
    font-weight: 500;
}
.total-search-card > .model-container > .car-badge {
    margin-left: 0;
    margin-right: 5px;
}
.total-search-card > .model-container > .model-text {
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: bold;
    font-size: 1.1rem;
}
.total-search-card > .reservation-container {
    flex: 1;
    padding: 0.5rem;
}
.total-search-card  > .reservation-container .time-text {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.total-search-card  > .reservation-container .time-text > .time {
    font-size: 1.1rem;
    font-weight: 500;
}
.total-search-card > .reservation-container .info-text {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    gap: 0.5rem;
}
.total-search-card > .reservation-container .info-text > .repair-title-text {
    font-size: 1.1rem;
    font-weight: bold;
}
.total-search-card > .reservation-container .info-text > .parking-badge {
    padding: 2px;
    box-sizing: border-box;
    background-color: rgb(128, 128, 128);
    color: #ffffff;
}
.total-search-card > .reservation-container .info-text > .memo-badge-container {
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.total-search-card > .reservation-container .info-text > .memo-badge-container > .memo-badge {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px;
    box-sizing: border-box;
    background-color: #ffffff;
    color: rgb(0, 122, 255);
}
.total-search-card > .reservation-container .check-list {
    margin-top: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 2px;
    gap: 2px;
}
.total-search-card > .reservation-container .check-list > .check-badge{
    padding: 2px;
    box-sizing: border-box;
}
.total-search-card > .reservation-container .info-text > .fixed-car {
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
}

.small-modal {
    max-width: 500px;
}
.mid-modal {
    max-width: 700px;
}

/* 면허증 이미지 슬라이드 구현 css */
.license-image-list {
    position: relative;
    width: 100%;
    margin: 10px auto;
    overflow: hidden;
}

.license-image-list .license-image-card-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.license-image-list .license-image-card-wrapper .license-image-card {
    min-width: 100%;
}

.license-image-list .license-image-card-wrapper .license-image-card img{
    max-height: 270px;
    width: 100%;
    border-radius: 10px;
}

.license-image-list .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.license-image-list .prev { left: 10px; }
.license-image-list .next { right: 10px; }

.text-center {
    text-align: center;
    vertical-align: middle;
}

.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-item-center {
    align-items: center !important;
}