/* Header */
header {
    display: flex;
    align-items: center;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.headerProjectTitle {
    position: absolute;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    right: 10px;
    letter-spacing: 0.0625rem;
    font-size: 0.625rem;
    color: var(--header-project-title-text);
}

.headerProjectTitle > div {
    position: relative;
}

.slideNumber {
    color: var(--header-slide-number-text);
    font-weight: 300;
    font-size: 20px;
    margin-left: 10px;
}

.slideTitleContainer {
    position: absolute;
    max-width: calc(100% - 130px);
    height: auto;
    left: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.fullscreenButtonExit {
    display: none;
}

/* Top navigator */
.slideTitleItem {
    width: 20px;
    height: 20px;
    overflow: hidden;
    cursor: pointer;
    padding-left: 20px;
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0);
    transition: all 0.5s ease;
    opacity: 0.5;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
}

/* Circle before each item */
.slideTitleItem::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--slide-navigator-item-bg);
    border: solid 1px var(--slide-navigator-item-outline);
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 3px;
    left: 0;
}

.slideTitleItem.slideTitleItemActive::before {
    background-color: var(--slide-navigator-item-active);
}
body.hasHover .slideTitleItem:hover {
    opacity: 1;
}

/*
Horizontal line after each item
While hovering transform to circle
*/
.slideTitleItem::after {
    content: "";
    width: 8px;
    height: 1px;
    background-color: var(--slide-navigator-item-outline);
    position: absolute;
    display: block;
    top: 9px;
    left: 12px;
    transition: all 0.3s ease-in-out;
}
.slideTitleItem.slideTitleItemActive::after,
.slideTitleItem:last-child::after {
    width: 0px;
}
body.hasHover .slideTitleItem:hover::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--slide-navigator-item-hover);
    border-radius: 50%;
    top: 3px;
    left: 0px;
    opacity: 1;
}
body .slideTitleItem.slideTitleItemActive::after {
    visibility: hidden;
}

.slideTitleItemVisited:not(.slideTitleItemActive)::before {
    background-color: var(--slide-navigator-item-visited);
    background-image: url('data:image/svg+xml,<svg viewBox="0 -960 960 960" height="24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m400-296.11-165.5-165.5 63.89-63.89L400-423.89 661.61-685.5l63.89 63.89L400-296.11Z" fill="%23ffffff" fill-opacity="1"/></svg>');
    background-position: center;
    background-size: contain;
}

.slideTitleItemActive {
    width: auto;
    padding: 0 7px 0 20px;
    color: var(--slide-navigator-item-text);
    cursor: default;
    opacity: 1;
}

/* Top navigator */

/* Header */

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
}

.footer div {
    position: relative;
}

.footer > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: calc(100% / 3);
    justify-content: center;
    gap: 5px;
}

.footer > div:first-child {
    justify-content: flex-start;
}

.footer > div:last-child {
    justify-content: flex-end;
}

.footer > div > div {
    margin: 0;
}

.footer > .footerRight > div:last-child {
    margin: 0 0 0 5px;
}

.footer > .footerLeft > div:first-child,
.footer > .footerLeftOneSlide > div:first-child {
    margin: 0 5px 0 0;
}

.footerLeftOneSlide {
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    font-size: 0.625rem;
    color: #fff;
}

.footerLogo img {
    vertical-align: middle;
}

.renderLabel {
    position: absolute;
    bottom: 0;
    padding: 0 0 calc(var(--footerHeight) + 5px) 10px;
    z-index: 1;
    font-size: 12px;
    color: white;
    pointer-events: none;
}

.footerLeftColumn {
    padding-left: 20px;
}

.footerRightColumn {
    padding-right: 20px;
}

.footerRightColumn .wpb_wrapper {
    flex-direction: row-reverse;
}

.footerLeftColumn .wpb_wrapper {
    flex-direction: row;
}

.footer > div {
    flex: 1;
}

.footerCenter {
    width: auto !important;
    flex: 0 !important;
}

.footerLogo {
    pointer-events: all !important;
}

.footerLogoSmall {
    width: 40px;
    height: 22px;
    display: none;
}

.footerLogoLarge {
    display: block;
    width: 144px;
    margin-right: 5px;
    height: 15px;
    max-width: 15vw;
}

@media (min-width: 768px) {
    .footerRight {
        flex-direction: row-reverse !important;
        justify-content: end !important;
    }
}
/* Smartphones: Vertical and Horizontal */
@media only screen and (max-width: 767px), (max-height: 575px) {
    .footerLogoLarge {
        display: none;
    }

    .footerLogoSmall {
        display: block;
    }
}
