@font-face {
    font-family: 'Karbon';
    src: url('/font/Karbon-Regular.woff2') format('woff2'),
        url('/font/Karbon-Regular.woff') format('woff'),
        url('/font/Karbon-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Karbon';
    src: url('/font/Karbon-Bold.woff2') format('woff2'),
        url('/font/Karbon-Bold.woff') format('woff'),
        url('/font/Karbon-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: "Karbon", Arial, Helvetica, sans-serif;
    font-size: 14px;
}

janssen-redirect{
    background: url(../img/bg-desktop.png) no-repeat top left #ede7e9;
    background-size: cover;
    display: block;
    min-height: calc(100vh - 64px);
    position: relative;
}

.content{
    align-items: center;
    max-width: 650px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

#logo{
    display: block;
    max-width: 650px;
    width: 100%;
}

#countdown{
    margin-bottom: 1rem;
    position: relative;
    width: 197px;
    height: 197px;
}

#countdown .clock-wrapper{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left:0;
    min-height: 197px;
    position: absolute;
    top: 0;
    width: 197px;
}

#countdown .clock-wrapper p{
    width: 100px;
    text-align: center;
    color: #7B7B7B;
    margin-bottom: 1rem;
}

#countdown .clock{
    color: #0078B1;
    font-size: 2.4rem;
    line-height: 1.1rem;
    display: block;
    text-align: center;
    font-weight: bold;
}

#countdown .clock-desc{
    color: #0078B1;
    font-size: 1.4rem;
    display: block;
    text-align: center;
    font-weight: bold;
}

#go-to-site{
    background: #0078B1;
    border: 1px solid #0078B1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    width: 196px;
    height: 48px;
    color: #fff;
    font-weight: bold;
}

#go-to-site:hover{
    text-decoration: underline;
}

#cancel-redirect{
    margin-top: 1rem;
    color: #7B7B7B;
    text-decoration: underline;
    border: 0;
    background: none;
    cursor: pointer;
}

#cancel-redirect:hover{
    text-decoration: none;
}

#logo-jj{
    position: absolute;
    bottom: 0;
    right: 10px;
}

#redirect-text{
    text-align: center;
    color: #7B7B7B;
    max-width: 364px;
    margin: 2rem 0 1rem;
}

#redirect-text a{
    color: #7B7B7B;
}

#redirect-text a:hover{
    text-decoration: none;
}

footer{
    align-items: center;
    display: flex;
    background: #0078B1;
    color: #fff;
    min-height: 64px;
    text-align: center;
    justify-content: center;
    padding: 10px 20px;
}

footer p{
    text-align: center;
    margin: 0;
    font-size: .8rem;
}

footer p a{
    color: #fff;
    text-decoration: none;
}

footer p a:hover{
    text-decoration: underline;
}


/* COUNTDOWN */
svg {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.circle_animation {
    /* this value is the pixel circumference of the circle */
    stroke-dasharray: 610;
    stroke-dashoffset: 610;
    transition: all 1s linear;
    stroke: #0078B1;
    stroke-width: 3px;
}

.circle_animation_shadow{
    stroke: #E5E5E5;
    stroke-width: 3px;
}

@media (min-width: 1800px) {
    janssen-redirect{
        padding-left: 50px;
    }

    .content,
    #logo {
        max-width: 750px;
    }
}

@media (max-width: 1600px) {
    janssen-redirect{
        min-height: calc(100vh - 67px);
    }
}

@media (max-width: 1400px) {
    .content,
    #logo {
        max-width: 500px;
    }
}

@media (max-width: 1000px) {
    janssen-redirect {
        min-height: calc(100vh - 82px);
        background: url(../img/bg-tablet.png) no-repeat top left #ede7e9;
        background-size: cover;
    }

    #logo-jj{
        position: static;
        margin-top: 6rem;
    }

    .content,
    #logo {
        max-width: 350px;
    }

    #redirect-text{
        max-width: 250px;
    }
}

@media (max-width: 600px) {
    janssen-redirect {
        min-height: 1300px;
        background: url(../img/bg-mobile.png) no-repeat center left #ede7e9;
        background-size: cover;
    }

    #logo-jj {
        position: static;
        margin: 0;
    }

    .content,
    #logo {
        max-width: unset;
        padding: 0 20px;
    }

    #redirect-text {
        max-width: unset;
    }

    footer{
        font-size: .9rem;
    }
}