/* WWW 20230619
-------------------------------------------------- */
.bg-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 100vh;*/
    height: 512px;
    z-index: -1;
}

.bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 100vh;*/
    height: 512px;
    overflow: hidden;
}

.bg-icons li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    color: rgba(var(--bs-primary-rgb),1);
    animation: animate 25s linear infinite;
    /*bottom: 0;*/
    bottom: -120px;
}

.bg-icons li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    animation-duration: 17s;
}
.bg-icons li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}
.bg-icons li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
.bg-icons li:nth-child(4) {
    left: 35%;
    width: 60px;
    height: 60px;
    animation-delay: 4s;
    animation-duration: 28s;
}
.bg-icons li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}
.bg-icons li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}
.bg-icons li:nth-child(7) {
    left: 80%;
    width: 120px;
    height: 120px;
    animation-delay: 7s;
    animation-duration: 12s;
}
.bg-icons li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}
.bg-icons li:nth-child(9) {
    left: 17%;
    width: 36px;
    height: 36px;
    animation-delay: 2s;
    animation-duration: 35s;
}
.bg-icons li:nth-child(10) {
    left: 67%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}
.bg-icons li:nth-child(11) {
    left: 52%;
    width: 90px;
    height: 90px;
    animation-delay: 2s;
    animation-duration: 36s;
}
.bg-icons li:nth-child(12) {
    left: 27%;
    width: 100px;
    height: 100px;
    animation-delay: 9s;
    animation-duration: 9s;
}
.bg-icons li:nth-child(13) {
    left: 59%;
    width: 72px;
    height: 72px;
    animation-delay: 8s;
    animation-duration: 27s;
}
.bg-icons li:nth-child(14) {
    left: 22%;
    width: 68px;
    height: 68px;
    animation-delay: 4s;
    animation-duration: 20s;
}
.bg-icons li:nth-child(15) {
    left: 44%;
    width: 120px;
    height: 120px;
    animation-delay: 3s;
    animation-duration: 12s;
}

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0.15;
        border-radius: 50%;
    }
}



    
/* variables 
-------------------------------------------------- */
html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/*body {*/
/*    min-height: 100%;*/
/*}*/

::selection {
    color: #fff;
    background: var(--bs-primary);
}

.loading {
    padding: 3rem;
    text-align: center;
}

.leaflet-icon {
    fill: var(--bs-primary);
}

/* variables 
-------------------------------------------------- */
:root {
    --www-radius: 1rem;
}

.cs-accent {
    color: #FFCD00;
}

/* reg plate 
-------------------------------------------------- */
.reg-plate {
    width: fit-content;
    padding: 0.5rem;
    background-color: #FFCD00;
    border-left: 1rem solid var(--bs-primary);
    border-radius: 0.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.25rem;
    color: #000;
}

.reg-plate-input {
    width: fit-content;
    padding: 0.5rem;
    background-color: #FFCD00;
    border-left: 1rem solid var(--bs-primary);
    border-radius: 0.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
}

    .reg-plate-input input:focus {
        outline: none;
    }

.reg-no {
    width: 2rem;
    padding: 0.25rem 0;
    text-align: center;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #000;
    background-color: rgba(255, 255, 255, 0.3);
    font-weight: 800;
    border-radius: 0.25rem;
    border: none;
}

/* timeline 
-------------------------------------------------- */
.timeline {
    display: grid;
    grid-row-gap: 2rem;
    padding: 2rem 0;
    border-left: 1px solid rgba(0,0,0, 0.175);
}

.timeline-cards {
    display: grid;
    grid-row-gap: 1rem;
}

.timeline-bullet {
    display: block;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: -41px;
    height: 16px;
    width: 16px;
    background: var(--bs-accent);
    border-radius: 50%;
}

.timeline-card {
    position: relative;
    margin-left: 2rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: var(--bs-body-color);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: 1px solid rgba(0,0,0, 0.175);
    border-radius: var(--bs-border-radius);
    box-shadow: 0 .5rem 1rem rgba(var(--bs-primary-rgb), 0.15);
    transition: ease-in-out 0.1s;
}

.timeline-card::before {
    content: "";
    width: 33px;
    height: 1px;
    background-color: rgba(0,0,0, 0.175);
    position: absolute;
    top: 50%;
    left: -33px;
    z-index: -1;
}

.timeline-card-header {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    /*    color: var(--bs-primary-text-emphasis);*/
}

.timeline-header-image {
    grid-area: 1 / 1 / 3 / 2;
    margin-right: 1rem;
}

.timeline-header-name {
    grid-area: 1 / 2 / 2 / 3;
    margin: auto 0.5rem 0 0;
    word-wrap: break-word;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: normal;
}

.timeline-header-created {
    grid-area: 2 / 2 / 3 / 3;
    margin-bottom: auto;
    word-wrap: break-word;
    color: #6c757d;
}

.timeline-card-body {
    flex: 1 1 auto;
}

.timeline-card-content {
    margin-top: 1rem;
}

.timeline-card-footer {
    display: flex;
    margin-top: 1rem;
    justify-content: space-between;
    align-items: center;
}

/* navbar 
-------------------------------------------------- */
.navbar {
    height: 58px;
    padding: 0 16px;
    background-color: var(--bs-primary);
    box-shadow: 0 .5rem 1rem rgba(var(--bs-primary-rgb),0.15);
}

.dropdown-item:active, .dropdown-item:hover {
    background-color: var(--bs-primary);
    box-shadow: 0 .5rem 1rem rgba(var(--bs-primary-rgb),0.15);
    color: #fff;
}


/* common
-------------------------------------------------- */
.www-img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--www-radius);
}

.www-img-circle {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

.www-icon {
    display: inline-block;
    padding: 1rem;
    color: #fff;
    background-color: rgba(255, 255, 255,0.5);
    border-radius: var(--www-radius);
}

/*.parallax-header {*/
/*!*    background: #000;*!*/
/*    background: linear-gradient(rgba(0,0,0, 0.3), rgba(0,0,0, 0.8), url(/assets/bg_1695052.jpg));*/
/*    background-attachment: fixed;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*}*/

.bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    /*    filter: opacity(65%);*/
    min-width: 100%;
    min-height: 100%;
    z-index: -9999;
    background-image: url(../assets/coffee_80134.mp4),url(../assets/bg_1695052.jpg);
}

.bg-member {
    display: flex;
    min-height: 180px;
    background-image: url("../assets/bg_thecafecloud.png");
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
}

.typed-text {
    margin: 0 auto;
    padding: 1rem;
    font-size: 3rem;
}

    .typed-text h1 {
        font-weight: bold;
        line-height: 1.4;
    }

.tag-line {
    line-height: 0.9;
    font-size: 3rem;
}


/* footer 
-------------------------------------------------- */
.footer {
    margin-top: auto;
    padding: 16px 0;
    background-color: var(--bs-light);
    color: var(--bs-secondary);
}

.footer-legal p {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
}

/* screen specific 
-------------------------------------------------- */
@media screen and (max-width: 768px) {
    .navbar-app-title {
        display: none;
    }

    .timeline-card {
        margin-left: 1rem;
        padding: 1rem;
    }

    .timeline-card::before {
        width: 16px;
        left: -17px;
    }

    .timeline-bullet {
        left: -25px;
    }

    .timeline-header-name {
        font-size: 1.25rem;
    }
    
}

/* Error handling
-------------------------------------------------- */
.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.components-reconnect-show, .components-reconnect-failed, .components-reconnect-rejected {
    display: block;
}