
.oca-baleine {
background-color: #0020c7;
}

.oca-poisson-ogre,
.oca-thon {
background-color: #000;
}



.oca-wrapper {
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: flex;
	position: fixed;
	z-index:9999;
	pointer-events: none;
	justify-content: stretch;
	align-items: flex-end;
	transition: opacity 1s;
	opacity: 0;
}

.oca-wrapper.show {
	opacity: 1;
}

.oca-container {
	position: relative;
	box-shadow: 0 0 20px 6px rgba(0, 0, 0, .4);
}

.show .oca-container {
	pointer-events: all;
}

.oca-wrapper.close {
	display: none;
}

.oca-close-btn {
	background-color: #fff;
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 1rem;
	right: 1rem;
	cursor: pointer;
	z-index: 9;
}


.oca-close-btn::after,
.oca-close-btn::before {
	content: "";
	display: block;
	width: 1rem;
	height: 2px;
	background: #1b3f89;
	transform-origin: center center;
	position:absolute;
	top: 50%;
	left: 50%;
}

.oca-close-btn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.oca-close-btn::after {
	transform: translate(-50%, -50%) rotate(135deg);
}


.oca-title {
	position: relative;
}

.oca-title__text {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 1.3rem;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	width: 80%;
}

.oca-title__text .mark {
	border-radius: 0;
	padding: 5px 10px;
	line-height: 1.2;
}

@media (min-width: 600px) {
	.oca-title__text {
		font-size: 1.6rem;
	}
}


@media (min-width: 600px) {

	.oca-wrapper {
		justify-content: flex-end;
		align-items: center;
	}

	.oca-container {
		max-width: 45ch;
		width: 100%;
	}
}




@font-face {
    font-family: 'Zodiac Sans';
    src: url('https://cdn.greenpeace.fr/fonts/zodiac/zodiac.eot');
    src: url('https://cdn.greenpeace.fr/fonts/zodiac/zodiac.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.greenpeace.fr/fonts/zodiac/zodiac.woff2') format('woff2'),
        url('https://cdn.greenpeace.fr/fonts/zodiac/zodiac.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: fallback;
}


@keyframes slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}


.oca-title img {
	width: 100%;
	height: auto;
}


.oca-text {
	padding: 0 1.25rem 1rem;
	line-height: 1.25;
	text-align: center;
	color: #fff;
	font-size: 1rem;
	font-style: italic;
}

.oca-cta {
	display: flex;
	justify-content: center;
	padding-bottom: 1rem;
}

.oca-cta a {
	text-transform: uppercase;
	color: #000;
	background-color: #ffd200;
	padding: .75rem 2.5rem;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	font-weight: bold;
}


