/* コンテキスト固有 */
.snpl-web .select-list {
    max-height: 10rem;
    overflow-y: auto;
    background-color: var(--white);
    border-radius: 0.25rem;
}

.snpl-web .custom-checkbox input[type="checkbox"] {
    display: none;
}

.snpl-web .custom-checkbox input[type="checkbox"] + label {
    display: none;
    display: inline-block;
    position: relative;
    padding-left: 25px;
    padding-right: 10px;
    cursor: pointer;
}

.snpl-web .custom-checkbox.only input[type="checkbox"] + label {
    padding-left: 0;
    padding-right: 0;
}

.snpl-web .custom-checkbox input[type="checkbox"]:disabled + label {
    cursor: default;
}

.snpl-web .custom-checkbox input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin-top: -14px;
    left: 0;
    top: 60%;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background-color: var(--white);
}

.snpl-web .custom-checkbox input[type="checkbox"]:checked + label::before {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin-top: -14px;
    left: 0;
    top: 60%;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background-color: var(--primary);
}

.snpl-web .custom-checkbox.only input[type="checkbox"] + label::before,
.snpl-web .custom-checkbox.only input[type="checkbox"]:checked + label::before {
    left: -5px;
}

.snpl-web .custom-checkbox input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 11px;
    height: 8px;
    margin-top: -10px;
    top: 60%;
    left: 5px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color: var(--white);
}

.snpl-web .custom-checkbox.only input[type="checkbox"]:checked + label::after {
    left: 0;
}

.snpl-web .custom-checkbox input[type="checkbox"]:disabled + label::before {
    opacity: 0.5;
    cursor: default;
}

.snpl-web .radio-circle-button {
    display: none;
}

.snpl-web .radio-label {
    position: relative;
    height: 30px;
    padding-left: 30px;
    cursor: pointer;
    top: 12px;
}

.snpl-web .radio-label::before,
.snpl-web .radio-label::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 30%;
}

.snpl-web .radio-label::before {
    background-color: #ffffff;
    border: 2px solid var(--primary);
    height: 24px;
    width: 24px;
    left: 0px;
}

.snpl-web .radio-label::after {
    background-color: var(--primary);
    opacity: 0;
    height: 16px;
    width: 16px;
    left: 4px;
}

.snpl-web .radio-circle-button:checked+.radio-label::after {
    opacity: 1;
}

.snpl-web .radio-circle-button:disabled+.radio-label,
.snpl-web .radio-circle-button:disabled+.radio-label::before,
.snpl-web .radio-circle-button:checked:disabled+.radio-label::after {
    cursor: default;
    opacity: 0.7;
}

.snpl-web .box-upper-line {
    border: 2px solid var(--secondary);
    border-top: 4px solid var(--primary);
    background-color :var(--secondary);
    padding-top: 3px;
    width: 100%;
}

.snpl-web .box-upper-line,
.snpl-web .box-upper-line input,
.snpl-web .box-upper-line select {
    font-size: 0.9rem;
}

.snpl-web .search-category {
    border: 1px dotted var(--primary);
    border-radius: 5px;
    margin: 0.3rem;
    padding: 0.25rem 0.4rem;
    font-size: 0.9rem;
}

.snpl-web .search-category-no-border {
    margin: 0.3rem;
    padding: 0.5rem 0.4rem;
    font-size: 0.9rem;
}

.snpl-web .search-item-title {
    font-size: 0.9rem;
}

.snpl-web details {
    margin-right: -15px;
    margin-left: -15px;
}

.snpl-web details summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.snpl-web details summary:focus-visible {
    border-color: #56d1d1;
    border-radius: 0.25rem;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(36 132 132 / 25%);
}

.snpl-web details summary::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f055';
    margin-right: 0.4rem;
    font-weight: bold;
    color: var(--primary);
}

.snpl-web details[open] summary::before {
    content: '\f056';
}

.snpl-web pre.textarea {
    position: relative;
    padding: 6px 8px;
    margin: 0;
    border-radius: 4px;
    border: 1px solid var(--info);
    background-color: var(--white);
    font: inherit;
    font-size: 0.9rem;
    width: 100%;
    white-space: pre-wrap;
}

/* 画面固有 */
#snpl-web-operator-main {
    position: fixed;
    width: 100%;
    height: 100%;
}

#snpl-web-operator-main .map-contents {
    height: calc(100vh - 122px);
}

#snpl-web-operator-main .top-bar,
#snpl-web-operator-main .menu-bar {
    position: relative;
    background-color: var(--secondary);
    z-index: 2;
}

#snpl-web-operator-main .top-bar .login-user-icon {
    color: var(--primary);
}

#snpl-web-operator-main .top-bar img.brand-logo {
    object-fit: scale-down;
    height: 42px;
}

#snpl-web-operator-main .check-bar,
#snpl-web-operator-history .check-bar {
    position: relative;
    background-color: var(--info);
    opacity: 0.7;
    z-index: 2;
}

#snpl-web-operator-main .check-bar .check-label,
#snpl-web-operator-history .check-bar .check-label {
    color: var(--white);
    cursor: pointer;
}

#snpl-web-operator-operationlist .in-operation,
#snpl-web-operator-imagelist .in-operation {
    color: #fff;
    background-color: #F06060;
}

#snpl-web-operator-operationlist .pause,
#snpl-web-operator-imagelist .pause {
    color: #212529;
    background-color: #79C06E;
}

#snpl-web-operator-operationlist .line-disconnection,
#snpl-web-operator-imagelist .line-disconnection {
    color: #212529;
    background-color: #F7F7F8;
}

#snpl-web-operator-operationlist .legend-operating-status,
#snpl-web-operator-imagelist .legend-operating-status {
    display: block;
    width: 1.5rem;
    height: 1.6rem;
}

#snpl-web-operator-operationlist .legend-operating-status + span,
#snpl-web-operator-imagelist .legend-operating-status + span {
    font-size: 0.8rem;
}

#snpl-web-operator-operationlist table.operation-list,
#snpl-web-operator-imagelist table.image-list {
    font-size: 0.9rem;
    width: 240px;
}

#snpl-web-operator-imagelist .image-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--dark);
    width: 100%;
}

#snpl-web-operator-imagelist .image-area img {
    object-fit: scale-down;
    width: 100%;
    height: 240px;
}

#snpl-web-operator-imagelist .image-area .no-image {
    height: 240px;
    font-size: 1.33rem;
}

#snpl-web-operator-imagelist .image-area .image-datetime {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background-color: var(--dark);
    padding: 2px;
    font-size: 0.8rem;
}

#snpl-web-operator-imagelist .image-area .refresh-button {
    position: absolute;
    right: 2px;
    bottom: 2px;
}

#snpl-web-operator-history {
    position: fixed;
    width: 100%;
    height: 100%;
}

#snpl-web-operator-history .map-contents {
    height: calc(100vh - 90px);
}

#snpl-web-operator-operationmanagement table.register-status-list {
    font-size: 0.75rem;
}

#snpl-web-operator-operationmanagement table.register-status-list thead {
    background-color: var(--secondary);
}

#snpl-web-operator-operationmanagement table.register-status-list thead th {
    border-bottom: none;
    font-weight: normal;
}

#snpl-web-operator-operationmanagement .vendor-confirmed,
#snpl-web-operator-operationmanagement .supervisor-confirmed {
    background-color: #79C06e;
}

#snpl-web-operator-operationmanagement .vendor-temporary {
    background-color: #f7f7f8;
}

#snpl-web-operator-operationmanagement .vendor-unconfirm,
#snpl-web-operator-operationmanagement .supervisor-unconfirm {
    color: var(--white);
    background-color: #f06060;
}

#snpl-web-operator-operationmanagement table.operation-list {
    border-collapse: separate;
    border-spacing: 0;
    border-top: none;
    border-left: none;
    font-size: 0.75rem;
}

#snpl-web-operator-operationmanagement table.operation-list th,
#snpl-web-operator-operationmanagement table.operation-list td {
    height: 24px;
    border-bottom: none;
    font-weight: normal;
    padding: 0 6px;
}

#snpl-web-operator-operationmanagement table.operation-list thead tr th:first-child,
#snpl-web-operator-operationmanagement table.operation-list thead tr:last-child th {
    background-color: var(--secondary);
}

#snpl-web-operator-operationmanagement table.operation-list thead th,
#snpl-web-operator-operationmanagement table.operation-list tbody th {
    background-color: var(--white);
}

#snpl-web-operator-operationmanagement table.operation-list thead tr th,
#snpl-web-operator-operationmanagement table.operation-list tbody tr th:nth-child(1) {
    position: sticky;
    z-index: 1;
}

#snpl-web-operator-operationmanagement table.operation-list thead tr th:nth-child(1),
#snpl-web-operator-operationmanagement table.operation-list tbody tr th:nth-child(1) {
    left: 0;
}

#snpl-web-operator-operationmanagement table.operation-list thead tr:nth-child(1) th {
    top: 0;
}

#snpl-web-operator-operationmanagement table.operation-list thead tr:nth-child(2) th {
    top: 24px;
}

#snpl-web-operator-operationmanagement table.operation-list thead tr:nth-child(3) th {
    top: 48px;
}

#snpl-web-operator-operationmanagement table.operation-list thead tr:nth-child(4) th {
    top: 72px;
}

#snpl-web-operator-operationmanagement table.operation-list thead tr:nth-child(5) th {
    top: 96px;
}

#snpl-web-operator-operationmanagement table.operation-list thead tr th:nth-child(1) {
    z-index: 3;
}

#snpl-web-operator-operationmanagement table.operation-list .inner-title-right {
    border-right: 1px solid #dee2e6;
}

#snpl-web-operator-operationmanagement table.operation-list .inner-title-bottom {
    border-bottom: 1px solid #dee2e6;
}

#snpl-web-operator-operationmanagement table.operation-list .title-column {
    width: 80px;
    height: 24px;
}

#snpl-web-operator-operationmanagement .unapproval-only {
    font-size: 0.9rem;
}

#snpl-web-operator-operationmanagement button.operation-user-register {
    position: relative;
}

#snpl-web-operator-operationmanagement button.operation-user-register .is-exist-remand {
    position: absolute;
    top: -5px;
    right: -20px;
}

#snpl-web-operator-operationregister .information-bar {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 5px;
    margin: 0.3rem;
    padding: 0.25rem 0.8rem;
}

#snpl-web-operator-operationregister .grid-box {
    display: block;
    float: left;
    min-width: 900px;
    min-height: 30px;
    background-color: #fff;
    margin-left: 5px;
    margin-bottom: 10px;
}

#snpl-web-operator-operationregister .grid-box .title-frame {
    display: block;
    float: left;
    width: 160px;
    min-height: 30px;
}

#snpl-web-operator-operationregister .grid-box .edit-frame {
    display: block;
    float: left;
    width: calc(100vw - 282px);
    min-height: 30px;
}

#snpl-web-operator-operationregister .grid-box .total-frame {
    display: block;
    float: left;
    width: 70px;
    min-height: 30px;
}

#snpl-web-operator-operationregister .gps-data-area .grid-box .edit-frame {
    overflow: hidden;
    will-change: transform;
}

#snpl-web-operator-operationregister .register-area.disabled {
    opacity: 0.6;
}

#snpl-web-operator-operationregister .register-area .grid-box .edit-frame {
    overflow-x: scroll;
    overflow-y: hidden;
    will-change: transform;
}

#snpl-web-operator-operationregister .grid-box .title-frame,
#snpl-web-operator-operationregister .grid-box .total-frame {
    border-left: solid 0.5px #333;
    border-right: solid 0.5px #333;
    z-index: 3;
}

#snpl-web-operator-operationregister .grid-box .title-frame .header {
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

#snpl-web-operator-operationregister .grid-box .title-frame .line {
    position: relative;
}

#snpl-web-operator-operationregister .grid-box .title-frame .line .line-name {
    padding-left: 5px;
    overflow: hidden;
    width: inherit;
    height: 29px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#snpl-web-operator-operationregister .grid-box .title-frame .edit-row {
    cursor: pointer;
}

#snpl-web-operator-operationregister .grid-box .title-frame .route-classification,
#snpl-web-operator-operationregister .grid-box .total-frame .route-classification {
    background-color: var(--secondary);
}

#snpl-web-operator-operationregister .grid-box .title-frame .line .tooltip-text {
    visibility: hidden;
    position: absolute;
    background-color: #ffffff;
    color: inherit;
    padding: 0 6px;
    top: -6px;
    left: 164px;
    border: solid 1px var(--primary);
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1;
}

#snpl-web-operator-operationregister .grid-box .title-frame .line:hover .tooltip-text {
    visibility: visible;
}

#snpl-web-operator-operationregister .grid-box .title-frame .line,
#snpl-web-operator-operationregister .grid-box .total-frame .line {
    line-height: 30px;
    font-size: 0.8rem;
}

#snpl-web-operator-operationregister .grid-box .total-frame .line {
    text-align: right;
    padding-right: 10px;
}

#snpl-web-operator-operationregister .grid-box .scroll {
    display: block;
    float: left;
    min-width: 1440px;
    min-height: 30px;
    will-change: transform;
}

#snpl-web-operator-operationregister .grid-box .header,
#snpl-web-operator-operationregister .grid-box .line {
    display: block;
    float: left;
    width: 100%;
    height: 30px;
    border-bottom: solid 1px #333;
}

#snpl-web-operator-operationregister .grid-box .header {
    border-top: solid 0.5px #333;
}

#snpl-web-operator-operationregister .grid-box .times {
    display: block;
    float: left;
    min-width: 60px;
    height: 30px;
    line-height: 40px;
    text-align: left;
    padding-left: 2px;
    font-size: 0.9rem;
}

#snpl-web-operator-operationregister .grid-box .grid {
    display: block;
    float: left;
    width: 3px;
    height: 29px;
    position: relative;
}

#snpl-web-operator-operationregister .grid-box .slack-off {
    position: absolute;
    display: block;
    float: left;
    height: 29px;
    background-image: linear-gradient( -45deg, rgba(255,255,255,0) 25%, #ffec00 25%, #ffec00 50%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 75%, #ffec00 75%, #ffec00);
    background-attachment: fixed;
    background-size: 10px 10px;
    border: solid 1px #ffec00;
    z-index : 2;
}

#snpl-web-operator-operationregister .register-area .grid-box .grid .tooltip-text {
    visibility: hidden;
    position: absolute;
    background-color: rgb(255, 236, 0);
    color: inherit;
    width: 100px;
    text-align: center;
    padding: 2px 0;
    bottom: 90%;
    left: 3px;
    border: solid 1px var(--primary);
    font-size: 0.75rem;
    z-index: 2;
}

#snpl-web-operator-operationregister .register-area .grid-box .grid .tooltip-text.right {
    left: -100px;
}

#snpl-web-operator-operationregister .register-area .grid-box .line:not(.gps-data) .grid:hover {
    background-color: rgb(255, 236, 0) !important;
}

#snpl-web-operator-operationregister .register-area .grid-box .line:not(.gps-data) .grid:hover .tooltip-text {
    visibility: visible;
    z-index: 3;
}

#snpl-web-operator-operationregister .grid-box .grid.separate-hour {
    border-right: solid 0.5px #333;
}

#snpl-web-operator-operationregister .grid-box .grid.separate-minutes {
    border-right: dotted 0.5px #777;
}

#snpl-web-operator-operationregister .button-category {
    padding: 0.25rem 0.4rem;
}

#snpl-web-operator-operationregister .register-category {
    border: 1px dotted var(--primary);
    border-radius: 5px;
    margin: 0.3rem;
    padding: 0.25rem 0.4rem;
    font-size: 0.9rem;
}

#snpl-web-operator-operationregister .register-category.disabled {
    opacity: 0.6;
}

#snpl-web-operator-operationregister .register-item-title {
    font-size: 0.9rem;
}

#snpl-web-operator-operationregister .unitprice-input .unit-price-title {
    font-size: 0.9rem;
    font-weight: normal;
}

#snpl-web-operator-operationregister .operation-edit .legend {
    display: block;
    width: 1.6rem;
    height: 1.8rem;
    margin-top: 0.3rem;
}

#snpl-web-operator-operationregister .information-input input,
#snpl-web-operator-operationregister .information-input textarea,
#snpl-web-operator-operationregister .unitprice-input input,
#snpl-web-operator-operationregister .unitprice-input select,
#snpl-web-operator-operationregister .image-register textarea {
    font-size: 0.8rem;
}

#snpl-web-operator-operationregister .image-register .image-area {
    position: relative;
}

#snpl-web-operator-operationregister .image-register .image-area img {
    object-fit: scale-down;
    width: 200px;
    min-width: 200px;
    height: 200px;
    text-align: center;
    background-color: var(--dark);
}

#snpl-web-operator-operationregister .image-register .image-area .image-remove-btn {
    position: absolute;
    bottom: 4px;
    right: 4px;
}

#snpl-web-operator-operationregister .image-register .button-area .btn {
    font-size: 0.8rem;
}

#snpl-web-operator-operationregister .image-register .comment-area {
    width: 200px;
}

#snpl-web-operator-operationregister .image-register .comment-area pre.textarea {
    position: relative;
    padding: 6px 8px;
    margin: 0;
    border-radius: 4px;
    border: 1px solid var(--primary);
    background-color: var(--white);
    font: inherit;
    width: 100%;
    white-space: pre-wrap;
}

#snpl-web-operator-operationregister .image-register .work-photo .image-area .selected {
    position: absolute;
    top: -20px;
    right: -10px;
}

#snpl-web-operator-dispatchinstruction .command-work-classification-button:not(.active) {
    background-color: var(--white);
}

#snpl-web-operator-dispatchinstruction .command-work-classification-button:not(.active):hover {
    color: var(--primary);
}

#snpl-web-operator-dispatchinstruction .legend-status {
    display: block;
    width: 1.5rem;
    height: 1.6rem;
}

#snpl-web-operator-dispatchinstruction .legend-status + span {
    font-size: 0.8rem;
}

#snpl-web-operator-dispatchinstruction .status-not-contacted {
    background-color: var(--white);
}

#snpl-web-operator-dispatchinstruction .status-already-contacted {
    background-color: #e2f6f7;
}

#snpl-web-operator-dispatchinstruction .status-already-contacted-not-confirmed {
    color: var(--white);
    background-color: #f06060
}

#snpl-web-operator-dispatchinstruction .status-retry-stopped {
    color: var(--white);
    background-color: #79c06e;
}

#snpl-web-operator-dispatchinstruction table.data-list,
#snpl-web-operator-dispatchinstruction table.status-list,
#snpl-web-operator-dispatchinstruction table.parameter-list {
    font-size: 0.9rem;
}

#snpl-web-operator-dispatchinstruction table.data-list tr {
    background-color: var(--white);
}

#snpl-web-operator-dispatchinstruction table.data-list td.datetime-cell {
    padding: 0.1rem;
}

#snpl-web-operator-dispatchinstruction button.instruction-button {
    width: 100%;
    height: 8rem;
    font-size: 1.8rem;
}

#snpl-web-operator-dispatchinstruction button.state-control-button {
    width: 100%;
    font-size: 1rem;
}

#snpl-web-operator-dispatchinstruction button.state-control-button:not(:hover) {
    background-color: var(--white);
}

#snpl-web-operator-dispatchinstruction button.btn-send {
    background-color: #f06060;
    color: var(--white);
}

#snpl-web-operator-dispatchinstruction button.btn-retry-stop {
    background-color: #79c06e;
    color: var(--white);
}

#snpl-web-operator-dispatchinstruction button.btn-send:not([disabled]):hover,
#snpl-web-operator-dispatchinstruction button.btn-retry-stop:not([disabled]):hover {
    color: var(--primary);
}

#snpl-web-operator-dispatchinstruction .selected-command-work-clasification {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 0.25rem;
    font-size: 1rem;
    padding: 0.33rem 1.05rem;
}

#snpl-web-operator-dispatchinstruction table.send-user tr {
    cursor: pointer;
}

#snpl-web-operator-dispatchinstruction table.send-user tr.active {
    background-color: var(--secondary);
}

#snpl-web-operator-dispatchinstruction .data-list .route-classification-name {
    max-width: 200px;
    min-width: 120px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

#snpl-web-operator-dispatchinstruction .data-list .route-group-name {
    max-width: 200px;
    min-width: 120px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

#snpl-web-operator-dispatchinstruction .data-list .normal-route-name {
    max-width: 400px;
    min-width: 200px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

#snpl-web-operator-dispatchinstruction .data-list .user-name {
    max-width: 300px;
    min-width: 160px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

#snpl-web-operator-dispatchinstruction .data-list .inner-table {
    min-height: 54px;
}

#snpl-web-operator-dispatchinstruction .data-list .inner-table td {
    border: none;
}

#snpl-web-operator-dispatchinstruction .instruction-status-list {
    height: 100%;
}

#snpl-web-operator-dispatchinstruction .data-list .sub-checkbox,
#snpl-web-operator-dispatchinstruction .instruction-status-list .sub-checkbox {
    min-width: 46px;
    width: 46px;
}

#snpl-web-operator-dispatchinstruction .data-list .dispatch-type,
#snpl-web-operator-dispatchinstruction .instruction-status-list .dispatch-type {
    min-width: 80px;
    width: 80px;
}

#snpl-web-operator-dispatchinstruction .data-list .datetime,
#snpl-web-operator-dispatchinstruction .instruction-status-list .datetime {
    min-width: 140px;
    width: 140px;
}

#snpl-web-operator-dispatchinstruction .instruction-status-list .instruction-status-cell {
    min-height: 54px;
    border-left: none;
    border-bottom: none;
    text-align: center;
    vertical-align: middle;
}

#snpl-web-operator-dispatchinstruction .instruction-status-list .confirm-datetime.instruction-status-cell {
    border-right: none;
}

#snpl-web-operator-dispatchinstruction .instruction-status-list tr:first-child .instruction-status-cell {
    border-top: none;
}

#snpl-web-operator-noticefromoperator .message-content,
#snpl-web-operator-noticefromoperator table.user-list,
#snpl-web-operator-noticefromoperator .sent-datetime {
    font-size: 0.9rem;
}

#snpl-web-operator-noticefromoperator .message-content.active {
    background-color: var(--secondary);
}

#snpl-web-operator-noticefromoperator .legend-status {
    display: flex;
    width: 1.5rem;
    height: 1.6rem;
    align-items: center;
}

#snpl-web-operator-noticefromoperator .legend-status + span,
#snpl-web-operator-noticefromoperator .check-label {
    font-size: 0.8rem;
}

#snpl-web-operator-noticefromoperator .status-unread,
#snpl-web-operator-noticefromoperator .status-cancel {
        background-color: #f06060;
}

#snpl-web-operator-noticefromoperator .status-cancel .cancel-icon {
    font-size: 0.8rem;
    color: var(--yellow);
}

#snpl-web-operator-vehicledetail .image-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--dark);
}

#snpl-web-operator-vehicledetail .image-area img {
    object-fit: scale-down;
    height: 500px;
}

#snpl-web-operator-vehicledetail .image-area .no-image {
    height: 500px;
    font-size: 2rem;
}

#snpl-web-operator-vehicledetail .image-area .image-datetime {
    position: absolute;
    top: 4px;
    left: 4px;
    color: #fff;
    background-color: var(--dark);
    padding: 2px;
    font-size: 0.8rem;
}

#snpl-web-operator-vehicledetail .image-area .play-button,
#snpl-web-operator-vehicledetail .image-area .stop-button {
    position: absolute;
}

#snpl-web-operator-vehicledetail .image-area .play-button i {
    cursor: pointer;
    font-size: 7rem;
    color: var(--primary);
    opacity: 0.9;
}

#snpl-web-operator-vehicledetail .image-area .stop-button i {
    font-size: 7rem;
    color: var(--primary);
    opacity: 0;
}

#snpl-web-operator-vehicledetail .image-area .stop-button i:hover {
    cursor: pointer;
    opacity: 0.9;
}

#snpl-web-operator-vehicledetail .message-area {
    margin: 0.3rem;
}

#snpl-web-operator-vehicledetail .message-area .label {
    background-color: var(--info);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.3rem 0.25rem 0.25rem 0.25rem;
}

#snpl-web-operator-vehicledetail .message-area textarea {
    font-size: 0.8rem;
}

#snpl-web-operator-vehicledetail .message-area pre.textarea {
    position: relative;
    padding: 6px 8px;
    margin: 0;
    border-radius: 4px;
    border: 1px solid var(--info);
    background-color: var(--white);
    font: inherit;
    width: 390px;
    white-space: pre-wrap;
}

#snpl-web-operator-vehicledetail .detail-table {
    font-size: 0.8rem;
}

#snpl-web-operator-costperformance table.costperformance-list {
    font-size: 0.85rem;
}
#snpl-web-operator-costperformance table th.row-title,
#snpl-web-operator-costperformance table td.row-title {
    background-color: var(--secondary);
}

#snpl-web-operator-costperformance table td.total-column {
    background-color: rgb(226, 247, 247);
}

#snpl-web-operator-costperformance table.costperformance-list thead tr th,
#snpl-web-operator-costperformance table.costperformance-list tbody tr td:nth-child(1) {
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom-width: 1px;
}

#snpl-web-operator-costperformance table.costperformance-list thead tr th:nth-child(1) {
    z-index: 3;
}

#snpl-web-operator-costperformance table.costperformance-list thead tr th:nth-child(1),
#snpl-web-operator-costperformance table.costperformance-list tbody tr td:nth-child(1) {
    left: -1px;
}

#snpl-web-operator-costperformance table.costperformance-list thead.vendor-vehicle-head th {
    font-weight: lighter;
    border-bottom: 0;
}

#snpl-web-operator-costperformance .invoices .download-file {
    padding: 1rem;
    text-align: center;
    cursor: pointer;
}

#snpl-web-operator-costperformance button.inactive {
    background-color: white;
}

#snpl-web-operator-costperformance button.inactive:hover {
    background-color: #248484;
}

#snpl-web-operator-executionstatus table.data-mini-list,
#snpl-web-operator-executionstatus table.data-mini-list input {
    font-size: 0.85rem;
}

#snpl-web-operator-executionstatus th.row-title,
#snpl-web-operator-executionstatus td.row-title {
    background-color: var(--secondary);
}

#snpl-web-operator-executionstatus td.total-column {
    background-color: var(--secondary);
}

#snpl-web-operator-executionstatus details {
    margin-right: -15px;
    margin-left: -15px;
}

#snpl-web-operator-executionstatus .doughnut-chart-area {
    position: relative;
    width: 280px;
}

#snpl-web-operator-executionstatus .execution-rate-label {
    position: absolute;
    top: 0;
    left: 16px;
}

#snpl-web-operator-executionstatus .execution-rate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
}

#snpl-web-operator-executionstatus .ui-widget-content {
    border: none;
}

#snpl-web-operator-executionstatus .bar-chart-area {
    position: relative;
    width: 100%;
    height: 400px;
}

#snpl-web-operator-executionstatus .bar-chart-area igc-legend table {
    font-size: 0.9rem;
    font-family: inherit;
}

#snpl-web-operator-executionstatus .bar-chart-area igc-legend table canvas {
    width: 30px !important;
    height: 30px !important;
}

#snpl-web-setting-top .content-area {
    background-color: var(--secondary);
    border-radius: 0.25rem;
    height: 100%;
}

#snpl-web-setting-top .content-area .content-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
}

#snpl-web-setting-top .content-area .link:hover {
    text-decoration: underline;
}

#snpl-web-setting-municipality .category-area {
    margin: 0.8rem 0.3rem;
    padding: 0.6rem;
    border: 1px solid var(--light);
    border-radius: 0.4rem;
    background-color: var(--light);
}

#snpl-web-setting-municipality label.category-name {
    font-size: 1.1rem;
}

#snpl-web-setting-systemsetting .inline-input-number {
    margin-top:-10px;
    width: 80px;
}

#snpl-web-setting-vehicleclassification img.selected-vehicle-icon {
    width: 36px;
    height: 36px;
    object-fit: cover;
    object-position: top -8px left 0;
}

#snpl-web-setting-vehicleclassification img.vehicle-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: top -22px left 0;
    cursor: pointer;
}

#snpl-web-setting-vehicleclassification img.active {
    outline: 4px solid var(--danger);
}

#snpl-web-setting-vehicle .device-setting {
    padding-top: 2px;
}

#snpl-web-setting-vehicle .device-setting .setting-label {
    padding: 0.2rem 0.4rem;
    border: 1px solid var(--primary);
    border-radius: 5px;
    background-color: var(--white);
}

#snpl-web-setting-vehicle .municipality-setting {
    padding-top: 2px;
}

#snpl-web-setting-vehicle .municipality-setting .setting-label {
    padding: 0.2rem 0.4rem;
    border: 1px solid var(--primary);
    border-radius: 5px;
    background-color: var(--white);
}

#snpl-web-setting-vehiclemunicipality .municipality-setting {
    padding-top: 2px;
}

#snpl-web-setting-vehiclemunicipality .setting-label {
    padding: 0.2rem 0.4rem;
    border: 1px solid var(--primary);
    border-radius: 5px;
    background-color: var(--white);
}

#snpl-web-setting-user .municipality-list {
    font-size: 0.9rem;
}

#snpl-web-setting-user .municipality-list td {
    padding: 0.2rem;
}

#snpl-web-setting-userdetail .category-area {
    margin: 0.8rem 0.3rem;
    padding: 0.6rem;
    border: 1px solid var(--light);
    border-radius: 0.4rem;
    background-color: var(--light);
}

#snpl-web-setting-userdetail label.category-name {
    font-size: 1.1rem;
}

#snpl-web-setting-publicarea .btn-area {
    width: 33%;
    min-height: 100px;
    overflow-wrap: break-word;
}

/* コンポーネント固有 */
.snpl-web-cmp-daterange .dropdown-menu {
    left: -172px;
    z-index: 1100;
}

.snpl-web-cmp-daterange .dropdown-menu-overlay {
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1099;
    width: 100%;
    height: 100%;
}

.snpl-web-cmp-daterange .dropdown-menu-overlay .popup-trigger {
    position: absolute;
    width: 100%;
    height: 100%;
}

.snpl-web-cmp-daterange .datetime-filter {
    font-size: 0.8rem;
}

.snpl-web-cmp-imagesetting .selected-image {
    position: relative;
}

.snpl-web-cmp-imagesetting .selected-image img {
    object-fit: scale-down;
    width: 200px;
    min-width: 200px;
    height: 200px;
    text-align: center;
    background-color: var(--dark);
}

.snpl-web-cmp-imagesetting .selected-image .image-remove-btn {
    position: absolute;
    right: 4px;
    bottom: 4px;
}

.snpl-web-cmp-colorselection .color-sample {
    display: block;
    width: 60px;
    height: 30px;
    border: 1px solid #4e4e4e;
    border-radius: 5px;
    margin-right: 0.5rem;
}

.snpl-web-cmp-colorselection .color {
    width: 20px;
    height: 20px;
    border: 1px solid #4e4e4e;
    margin: 0.2rem;
}

.snpl-web-cmp-colorselection .selected-color {
    width: 100%;
    height: 2rem;
    border: 1px solid #4e4e4e;
    border-radius: 5px;
}
