        #site-preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            background-color: var(--wp--preset--color--base);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 999999;
            transition: opacity 0.5s ease, visibility 0.5s;
        }

        .loader-container {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .loader-hidden {
            opacity: 0 !important;
            visibility: hidden !important;
        }

        .skip-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
            color: #282828;
            background: transparent;
            border: 2px solid #282828;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .skip-btn:hover {
            background: #282828;
            color: #ffffff;
        }

        .loader {
            width: fit-content;
            height: fit-content;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .truckWrapper {
            width: 200px;
            height: 100px;
            display: flex;
            flex-direction: column;
            position: relative;
            align-items: center;
            justify-content: flex-end;
            overflow-x: hidden;
        }

        .truckBody {
            width: 130px;
            height: fit-content;
            margin-bottom: 6px;
            animation: motion 1s linear infinite;
        }

        @keyframes motion {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(3px);
            }
        }

        .truckTires {
            width: 130px;
            height: fit-content;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0px 10px 0px 15px;
            position: absolute;
            bottom: 0;
        }

        .truckTires svg {
            width: 24px;
        }

        .road {
            width: 100%;
            height: 1.5px;
            background-color: #282828;
            position: relative;
            bottom: 0;
            align-self: flex-end;
            border-radius: 3px;
        }

        .road::before,
        .road::after {
            content: "";
            position: absolute;
            background-color: #282828;
            right: -50%;
            border-radius: 3px;
            animation: roadAnimation 1.4s linear infinite;
            height: 100%;
        }

        .road::before {
            width: 20px;
            border-left: 10px solid white;
        }

        .road::after {
            width: 10px;
            right: -65%;
            border-left: 4px solid white;
        }

        .lampPost {
            position: absolute;
            bottom: 0;
            right: -90%;
            height: 90px;
            animation: roadAnimation 1.4s linear infinite;
        }

        @keyframes roadAnimation {
            0% {
                transform: translateX(0px);
            }

            100% {
                transform: translateX(-350px);
            }
        }

        @media (max-width: 600px) {
            .loader-container {
                flex-direction: column;
                gap: 20px;
            }
        }