﻿circle {
    transition: r 0.3s ease, transform 0.3s ease;
}

    circle:hover {
        cursor: pointer;
    }

.text-box-SVG {
    fill: #ffffff;
    font-size: 20px;
    font-family: Arial, sans-serif;
    text-anchor: middle;
    padding: 40px 40px 0px 0px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .text-box-SVG.show {
        opacity: 1;
        transform: translateY(0);
    }

.static-text-svg {
    fill: #ffffff;
    font-size: 20px;
    font-family: Arial, sans-serif;
    text-anchor: middle;
    padding: 40px 0px 0px 40px;
    color: #fff;
}
/*#textbox {
    transform: translateY(-20px);
}*/

[id^="pattern-image-"] {
    transition: width 0.3s ease, height 0.3s ease;
}

.timeline-background {
    background-color: orange;
    /*width: 100%;*/
}

.foreign-object-container {
    width: 100%;
    position: relative;
}

 /*Hide the desktop timeline on mobile*/ 
@media (max-width: 768px) {
    #timeline-desktop {
        display: none;
    }

    #timeline-mobile {
        display: block;
    }
}

 /*Hide the mobile timeline on larger screens*/ 
@media (min-width: 769px) {
    #timeline-mobile {
        display: none;
    }
}
.test {
    fill: white;
}


/* Always-visible text box */


.always-visible-text {
    position: absolute;
    top: clamp(17.25%, 21vw, 23%);
    left: clamp(40px, 10vw, 120px);
    right: clamp(40px, 10vw, 120px);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    z-index: 5;
    font-size: 1rem;
    box-sizing: border-box;
    max-width: none;
    text-align:center;
}





#mobile-textbox {
    position: absolute;
    top: clamp(41%, calc(46vw - 5vw), 51%);
    left: clamp(40px, 10vw, 120px);
    right: clamp(40px, 10vw, 120px);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    z-index: 5;
    font-size: 1rem;
    box-sizing: border-box;
    max-width: none;
    text-align: center;
    /*opacity: 0;*/
    /*transition: opacity 0.5s ease, transform 0.5s ease;*/
    /*background-color: red;*/
}

    #mobile-textbox.show {
        opacity: 1;
        transform: translateY(0);
    }

