.laptop .elementor-widget-container {
    position: relative;
    overflow: hidden;
}

.laptop .elementor-widget-container:before {
    content: '';
    position: absolute;
    z-index: 0;
    width: 68%;
    height: 88%;
    left: 20.9%;
    top: 10%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-position 0.5s;
    background-position: top 0 left;
    animation: laptop 10s linear infinite;
}

.laptop .elementor-widget-container img {
    position: relative;
    z-index: 1;
}

.laptop.btu .elementor-widget-container:before {
    background-image: url('/wp-content/uploads/2022/09/btu.png');
}

.laptop.chiller .elementor-widget-container:before {
    background-image: url('/wp-content/uploads/2022/09/chiller.png');
}

.laptop.kwh .elementor-widget-container:before {
    background-image: url('/wp-content/uploads/2022/09/kwh.png');
}

.laptop.tfa .elementor-widget-container:before {
    background-image: url('/wp-content/uploads/2022/09/tfa.png');
}

.laptop.temp-rh .elementor-widget-container:before {
    background-image: url('/wp-content/uploads/2022/09/temp-rh.png');
}

.laptop.tank-level .elementor-widget-container:before {
    background-image: url('/wp-content/uploads/2022/09/tank-level.png');
}

@keyframes laptop {
    0% {
        background-position: top 0 left;
    }
    50% {
        background-position: top 100% left;
    }
    100% {
        background-position: top 0 left;
    }
}