    html,
    body {
        touch-action: manipulation;
    }

    html,
    body,
    #cesiumContainer {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    #logo {

        height: 30px;
        z-index: 999999999;

    }

    .fixed-top {
        top: -10px;
    }

    #toolbar {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 999;
        background: rgba(42, 42, 42, 0.8);
        padding: 10px;
        border-radius: 5px;
        color: white;
    }

    #progressBar {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        z-index: 1000;
        display: flex;
        gap: 10px;
        align-items: center;
    }

    #pathSlider {
        flex: 1;
    }

    #toggleButton {
        position: absolute;
        top: 10px;
        z-index: 99999;
        right: 10px;
    }

    #playBtn,
    #pauseBtn,
    #zoomInBtn,
    #zoomOutBtn,
    #rotateLeftBtn,
    #rotateRightBtn,
    #tiltUpBtn,
    #tiltDownBtn,
    #infoBtn,
    #toggleButton {
        padding: 6px 12px;
        border: none;
        border-radius: 4px;
        background-color: #444;
        color: white !important;
        cursor: pointer;
    }

    #infoBox {
        transition: opacity 0.5s ease;
        opacity: 1;
        pointer-events: auto;
    }

    #infoBox.hidden {
        opacity: 0;
        pointer-events: none;
    }

    #dcontrols {
        position: absolute;
        flex-wrap: wrap;
        width: 47px;
        top: 150px;
        right: -10px;
        transform: translateX(-50%);
        z-index: 999999999;
        display: flex;
        margin-top: 20px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    #dcontrols>button {
        margin-top: 10px;
    }

    #silktide-cookie-icon{
        margin-bottom: 50px !important;
    }

    @media (max-width: 768px) {
#silktide-cookie-icon{
        margin-bottom: 30px !important;
        height: 30px !important;
    padding: 5px !important;
    width: 30px !important;
    }

        #infoBox {
            width: 90%;
            margin: 0 auto;
        }

    }