.exhaust-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

.layout-machine {
    width: 50%;
    height: 50%;
    box-sizing: border-box;
    padding: 10px;
    border: 0.5px solid #444;
    position: relative;
}

.line-title {
    color: white;
    margin: 0 0 10px 0;
    padding: 5px 15px;
    font-weight: bold;
    border-left: 5px solid #888;
    font-size: 1.1rem;
    z-index: 10;
    position: relative;
}

.main-layout {
    width: 100%;
    height: 100%;
    position: relative;
}

.room-1, .room-2 {
    position: absolute;
    right: -0.3rem;
    top: 5rem;
    width: 100%;
}

.room-1 {
    content: url("new-tools/layout_spray_booth.svg");
}

.room-2 {
    content: url("new-tools/layout_spray_booth_2.svg");
}

.main-label {
    position: absolute;
    top: 5rem;
    width: 100%;
    height: 100%;
}

.gird-label {
    position: relative;
    width: 100%;
    height: 100%;
}

/* WATER TANK & BUBBLE POSITION PER LINE  */
.label-water-tank {
    position: absolute;
    display: flex;
    align-items: end;
    overflow: hidden;
}

/* Line 1, 3, 4 (Pake room-1) koordinatnya mirip */
[data-line-id="1"] .label-water-tank,
[data-line-id="3"] .label-water-tank,
[data-line-id="4"] .label-water-tank {
    width: 14.5rem;
    height: 5.5rem;
    top: 14.4rem;
    left: 41.6rem;
}

/* Line 2 (Pake room-2) koordinat beda sendiri */
[data-line-id="2"] .label-water-tank {
    width: 12.45rem;
    height: 5.5rem;
    top: 14.6rem;
    left: 43.56rem;
}

.card-air {
    width: 100%;
    height: 50%;
    background: #7bcdff;
    transition: height 0.5s ease;
    position: relative;
}

[data-status="st0"] .card-air {
    height: 40%;
}

[data-status="st1"] .card-air {
    height: 100%;
}

.buble {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 1;
    transform: rotate(180deg);
    /* Balik gelembung biar naik ke atas */
}

.buble span {
    width: 1.2rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: buble_anim 1s linear infinite;
    animation-duration: calc(15s / var(--i));
}

@keyframes buble_anim {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translateY(5rem) scale(0.2);
        opacity: 0;
    }
}

/* MOTOR ROTATION */
[class^="roda-motor-"] {
    position: absolute;
    animation: rodaberputar 2s linear infinite;
}

.roda-motor-1 {
    width: 0.7rem;
    top: 5.625rem;
    left: 3.25rem;
    content: url("tools/roda-motor-1.svg");
}

.roda-motor-2 {
    width: 0.5rem;
    top: 6.0675rem;
    left: 4.6rem;
    content: url("tools/roda-motor-2.svg");
}

@keyframes rodaberputar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}