* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	line-height: 1.5;
	font: inherit;
	vertical-align: baseline;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	position: relative;
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

a {
	color: inherit;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, button, textarea, select {
	font: inherit;
}

input {
  appearance: none;
}

audio, canvas, iframe, img, svg, video {
	display: block;
	max-width: 100%;
}


body {
    font-family: 'Verdana', apple-system, BlinkMacSystemFont, "Segoe UI", 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.45em;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
    font-size: 100%;
    font-weight: 400;
    background-color: #fbfbfd;
    color: #271238;
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

header, footer {
    position: fixed;
    left: 30px;
    right: 30px;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .75em;
    display: flex;
    justify-content: space-between;
    z-index: 1; 
}

header {
    top: 20px;
}

footer {
    bottom: 20px;
}

.social-links {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.social-links a {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.social-links a svg {
    fill: #271238;
    width: 6px;
    height: 6px;
    margin-left: 6px;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

main svg {
    max-width: 50%;
    margin-bottom: 10vw;
}

.details-overlay {
    position: absolute;
    inset: 0;
    overflow-y: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 111;
}

.details-overlay.overlay-visible {
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.25s linear;
}

.details-overlay a.close-overlay .icon {
    width: 24px;
    height: 24px;
}

.details-overlay a.close-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0px;
    right: 0px;
    color: #dbdbde;
    z-index: 1;
}

.details-container {
    position: relative;
}

.details-overlay .details-container {
    height: calc(100vh - 40px);
    margin-top: 40px;
    overflow-y: scroll;
    border-radius: 12px 12px 0 0;
    opacity: 0;
    background: #fff;
    cursor: default;
    -webkit-overflow-scrolling: touch;
    transform: translateY(5%);
    transition: all 0.25s linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.details-overlay.overlay-visible .details-container {
    transform: translateY(0);
    opacity: 1;
}

.details-overlay.overlay-hiding .details-container {
    transform: translateY(5%);
    opacity: 0;
}

.overlay-content {
    width: 90%;
    max-width: 700px;
    margin: 10vw auto;
}

.overlay-content img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 4.836em;
}

.overlay-content h1 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 1.612em;
    letter-spacing: -.005em;
}

.overlay-content p {
    margin-bottom: 1.612em;
    line-height: 1.612em;
}

.about-en {
    font-style: italic;
}

.about-fr:after,
.about-en:after,
.terms-fr:after {
    content: "";
    display: block;
    margin: 4.836em auto;    
    width: 30px;
    height: 1px;
    background: #271238;
} 

.archives {
    display: flex;
}

.archives a {
    margin: 0 10px;
}

.btn-live {
    display: flex;
    align-items: center;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bb0005;
    margin-right: 7px;
  }
  
  .pulse {
    animation: pulse-animation 2s infinite;
  }
  
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(187, 0, 5, 0.2);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(187, 0, 5, 0);
    }
  }

  .btn-live.disabled .circle {
    background: #271238;
  }
  
  .btn-live.disabled .pulse {
    animation: none;
  }

@media screen 
and (max-width: 768px)  {	

    header {
        top: 15px;
    }

    footer {
        display: block;
        bottom: 15px;
    }

    footer a {
        display: block;
    }

    header, footer {
        left: 20px;
        right: 20px;
    }

    main svg {
        max-width: calc(100% - 40px);
    }

    .social-links {
        display: block;
        left: auto;
        right: 0;
        transform: none;
        bottom: 0;
        text-align: right;
    }

    .social-links a {
        margin: 0;
    }

}


  