:root {
    --bulma-warning-h: 239;
    --bulma-warning-s: 100%;
    --bulma-warning-l: 72%;
}

html {
    scroll-behavior: smooth;
}

.is-custom-left {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.is-custom-center {
    border-radius: 0;
}

.is-custom-right {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.buttons.is-inline {
    display: inline-flex;
}

.background {
    position:fixed;
    left:0;
    top:0;
    z-index:-1;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.background.initialised {
    opacity: 1;
}

.timeline-phony {
    display: inline !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0px !important;
    margin: 0px !important;
}

.timeline-spacer {
    height: 5px !important;
    padding-top: 0px !important;
    padding-bottom: 10px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.animate {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease-in-out, transform 1s ease-in-out;
}

.animate.in-view {
    opacity: 1;
    transform: scale(1);
}

ul {
    list-style-type: disc;
}

ul.is-inside {
    list-style-position: inside;
}

ul.is-centered {
    display: inline-flex;
    flex-direction: column;
    margin:auto;
}

ul.is-primary li::marker {
    color: var(--bulma-primary);
}

ul.is-info li::marker {
    color: var(--bulma-info);
}

.is-link {
    position: relative;
}

.is-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 0px;
    right: 0;
    background: var(--bulma-link);
    transition: width 0.4s ease;
    -webkit-transition: width 0.4s ease;
}

.is-link:hover::after {
    width: 100%;
    left: 0;
    background: var(--bulma-link);
}

.audio-player {
    width: 100%;
}

.card {
    background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-main-l), 0.75);
}

.tbg {
    background-color: hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-main-l), 0.3);
}

.grow-on-hover {
    transition: transform 0.3s ease;
}

.grow-on-hover:hover {
    transform: scale(1.2);
}

.overflow {
    white-space: nowrap;
    overflow: visible;
    overflow-wrap: normal;
    word-break: keep-all;
}