@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@100;200;300;400;500;600;700&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
    --whites: #fff;
    --blacks: #141414;
    --grays: #e9e9e9;
    --oranges: #ff9100;
    --success: #198754;
    --info: #0d6efd;
    --danger: #a50113;
}

.active-box .box-left,
.active-box,
.box-left,
.box-right {
    transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "IBM Plex Sans", "IBM Plex Sans Thai" !important;
}

:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

a {
    text-decoration: none !important;
    color: var(--blacks);
    z-index: 5;
}

.box-group .box-number {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 5;
}
.box-group .box-number p {
    /* font-size: 30px; */
    font-weight: 600;
    margin-top: 2rem;
    color: var(--blacks);
    z-index: 5;
}
.box-group .box-wheels {
    position: relative;
    padding-top: 2rem;
    z-index: 5;
}
.box-group .box-wheels .flex-spacebetween,
.box-group .box-wheels .row-empty,
.box-group .box-wheels .row-last,
.box-group .box-wheels .row-next,
.box-group .box-wheels .row-first,
.box-group .box-wheels .row-me {
    display: flex;
    justify-content: space-between;
}
.box-group .box-wheels .row-me::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--grays);
    top: 60%;
    z-index: -1;
}

.box-group .box-wheels .row-first::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--grays);
    top: 60%;
    z-index: -1;
}
.box-group .box-wheels .row-first::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--grays);
    top: 60%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}
.box-group .box-wheels .row-next::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--grays);
    top: 60%;
    z-index: -1;
}
.box-group .box-wheels .row-next::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--grays);
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 0;
}
.box-group .box-wheels .row-last::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--grays);
    top: 60%;
    z-index: 1;
}
.box-group .box-wheels .row-last::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 60%;
    background-color: var(--grays);
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}
.box-group .box-wheels .row-empty {
    padding: 4rem 0;
}
.box-group .box-wheels .row-empty::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--grays);
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}
.box-group .box-wheels .row-empty .box-left,
.box-group .box-wheels .row-empty .box-right {
    display: none;
}

.box-left,
.box-right {
    width: 60px;
    height: 90px;
    border: 1px solid var(--blacks);
    background-color: var(--whites);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    z-index: 5;
}
.box-left p,
.box-right p {
    font-size: 20px;
    font-weight: 600;
    z-index: 5;
}

.small .box-left,
.small .box-right {
    width: 35px;
    height: 50px;
    border: 1px solid var(--blacks);
    background-color: var(--whites);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    z-index: 5;
}
.small .box-left p,
.small .box-right p {
    font-size: 16px;
    font-weight: 600;
    z-index: 5;
}

.active-box .box-right {
    background: var(--oranges);
    z-index: 5;
}
.active-box .box-left {
    background: var(--oranges);
    transform: rotate(-15deg);
    z-index: 5;
}
.active-box .box-left p,
.active-box .box-right p {
    color: var(--whites);
    z-index: 5;
}

.active-box-success .box-right {
    background: var(--success);
    z-index: 5;
}
.active-box-success .box-left {
    background: var(--success);
    transform: rotate(-15deg);
    z-index: 5;
}
.active-box-success .box-left p,
.active-box-success .box-right p {
    color: var(--whites);
    z-index: 5;
}

.active-box-info .box-right {
    background: var(--info);
    z-index: 5;
}
.active-box-info .box-left {
    background: var(--info);
    transform: rotate(-15deg);
    z-index: 5;
}
.active-box-info .box-left p,
.active-box-info .box-right p {
    color: var(--whites);
    z-index: 5;
}

.active-box-danger .box-left {
    background: var(--danger);
    transform: rotate(-15deg);
    z-index: 5;
}
.active-box-danger .box-right {
    background: var(--danger);
    z-index: 5;
}
.active-box-danger .box-left p,
.active-box-danger .box-right p {
    color: var(--whites);
    z-index: 5;
}

#box-content {
    margin-top: 3rem;
}
#box-content .box-detail,
#box-content-add-check .box-detail {
    width: 100%;
    border: 1px solid var(--whites);
    padding: 15px;
    margin-top: 2rem;
    box-shadow: 7px 8px 25px -13px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 7px 8px 25px -13px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 7px 8px 25px -13px rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    border: 1px solid var(--grays);
}

.hidden {
    display: none !important;
}

p {
    font-weight: 500;
    margin-bottom: 10px !important;
}

.truck {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.truck .text-number {
    text-align: center;
}

.trailer {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.trailer .text-number {
    text-align: center;
}

/*# sourceMappingURL=style.css.map */
