#LoadSpinner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transition: opacity 4s;
}

.animated {
    visibility: hidden;
    max-height: 0px;
    max-width: 0px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 200ms cubic-bezier(0.32, 0.81, 0.45, 0.94);
}

.animated.transform {
    transition: transform 600ms cubic-bezier(0.32, 0.81, 0.45, 0.94), opacity 200ms cubic-bezier(0.32, 0.81, 0.45, 0.94);
}

.animated.show {
    max-height: unset;
    max-width: unset;
    overflow: unset;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

.animated.show.transform {
    transform: none;
    transition: transform 600ms cubic-bezier(0.55, 0.06, 0.68, 0.19), opacity 400ms cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

.hidden {
    display: none !important;
}

.widget.active {
    outline-width: 1px;
    outline-style: solid;
    outline-color: var(--ColorCreamLight);
    outline-offset: 4px;
}

.widget.focus {
    outline-width: 2px;
    outline-style: solid;
    outline-color: var(--ColorGoldLight);
    outline-offset: 3px;
}

.ImageBackground {
    height: 100%;
    width: 100%;
}

.ImageBackgroundImg {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: opacity 0.6s;
}
.ImageBackgroundImg.fadein {
    opacity: 0;
}
