@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --clr-grey: hsl(0 0% 95%);
}

#centrel-info-panel {
    position: fixed;
    right: clamp(1rem, 1vw, 2rem);
    bottom: clamp(1rem, 1vw, 2rem);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2), -1px -1px 6px rgba(0,0,0,0.1);
    border-radius: 15px;
    background-color: var(--clr-grey);
    padding: 1rem;
}

    #centrel-info-panel a {
        text-decoration: none;
    }

        #centrel-info-panel a:hover {
            text-decoration: none;
        }

#centrel-button-minimise {
    position: absolute;
    top: -24px;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: hsl(0, 0%, 30%);
    background-color: var(--clr-grey);
    border: 1px solid #ccc;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2), -1px -1px 6px rgba(0,0,0,0.1);
}

    #centrel-button-minimise:hover {
        filter: var(--mod-btn-hover-filter, brightness(120%));
    }

#centrel-info-panel img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 0 15px 15px;
}

#centrel-try-express-button {
    display: block;
    width: 100%;
    height: 40px;
    background-color: #b70000;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 8px;
    font-size: var(--size-step-0, 1.1rem);
    font-family: Montserrat, sans-serif;
    max-width: 12rem;
    margin: 1rem auto 0;
}

    #centrel-try-express-button:hover {
        filter: var(--mod-btn-hover-filter, brightness(130%));
    }

    #centrel-try-express-button:not(.loaded) {
        opacity: 0;
        animation: centrelFadeIn 1s cubic-bezier(0.42, 0, 0.58, 1) 1s forwards;
    }

    #centrel-try-express-button.loaded {
        opacity: 1;
        animation: none;
    }

@keyframes centrelFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#centrel-button-expand {
    position: fixed;
    z-index: 2;
    right: clamp(1rem, 1vw, 2rem);
    bottom: clamp(1rem, 1vw, 2rem);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: hsl(0, 0%, 30%);
    background-color: var(--clr-grey);
    border: 1px solid #ccc;
    font-size: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2), -1px -1px 6px rgba(0,0,0,0.1);
}

    #centrel-button-expand:hover {
        filter: var(--mod-btn-hover-filter, brightness(120%));
    }
