.search-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: rgba(0, 0, 0, .9)
}

.search-block {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh
}

.search-block::after, .search-block::before {
	content: '';
	position: absolute;
	width: calc(100% + 15px);
	height: calc(100% + 15px);
	pointer-events: none
}

.search-block::before {
	top: 0;
	left: 0;
	border-right-width: 0;
	border-bottom-width: 0
}

.search-block::after {
	right: 0;
	bottom: 0;
	border-top-width: 0;
	border-left-width: 0
}

.btn--search-close {
	position: absolute;
	top: 1.25em;
	right: 1.25em;
	display: none;
	cursor: pointer
}

.btn--search-close {
	display: block
}

.search__form {
	margin: 5em 0
}

.search__input::-webkit-input-placeholder {
	opacity: .3;
	color: #fff
}

.search__input::-moz-placeholder {
	opacity: .3;
	color: #fff
}

.search__input:-ms-input-placeholder {
	opacity: .3;
	color: #fff
}

.search__input::-webkit-search-cancel-button, .search__input::-webkit-search-decoration
	{
	-webkit-appearance: none
}

.search__input::-ms-clear {
	display: none
}

.search__related {
	display: flex;
	width: 75%
}

.search__suggestion {
	width: 50%;
	text-align: left
}

.search__suggestion:nth-child(2) {
	margin: 0 3em
}

.search__suggestion .titre {
	font-size: 1.35em;
	margin: 0
}

.search__suggestion .titre::before {
	content: '\21FE';
	display: inline-block;
	padding: 0 .5em 0 0
}

.search__suggestion p {
	font-size: 1.15em;
	line-height: 1.4;
	margin: .75em 0 0 0
}

.search-block {
	pointer-events: none;
	opacity: 0;
	transition: opacity .5s
}

.search--open {
	pointer-events: auto;
	opacity: 1
}

.search-block::after, .search-block::before {
	transition: transform .5s
}

.search-block::before {
	transform: translate3d(-15px, -15px, 0)
}

.search-block::after {
	transform: translate3d(15px, 15px, 0)
}

.search--open::after, .search--open::before {
	transform: translate3d(0, 0, 0)
}

.btn--search-close {
	opacity: 0;
	transform: scale3d(.8, .8, 1);
	transition: opacity .5s, transform .5s
}

.search--open .btn--search-close {
	opacity: 1;
	transform: scale3d(1, 1, 1)
}

.search__form {
	opacity: 0;
	transform: scale3d(.8, .8, 1);
	transition: opacity .5s, transform .5s
}

.search--open .search__form {
	opacity: 1;
	transform: scale3d(1, 1, 1)
}

.search__suggestion {
	opacity: 0;
	transform: translate3d(0, -30px, 0);
	transition: opacity .5s, transform .5s
}

.search--open .search__suggestion {
	opacity: 1;
	transform: translate3d(0, 0, 0)
}

.search--open .search__suggestion:nth-child(2) {
	transition-delay: .1s
}

.search--open .search__suggestion:nth-child(3) {
	transition-delay: .2s
}

@media screen and (max-width:40em) {
	.search__form {
		margin: 5em 0 1em
	}
	.btn--search-close {
		font-size: 1.25em;
		top: 1.5em;
		right: 1.5em
	}
	.search__info {
		text-align: left
	}
	.search__suggestion {
		font-size: 80%;
		width: 100%
	}
	.search__suggestion:nth-child(2), .search__suggestion:nth-child(3) {
		display: none
	}
	.search__suggestion:first-child p a {
		width: 100%
	}
	.megasearch-header__side, .search-wrap {
		float: none !important;
		display: block !important;
		left: 0;
		text-align: center;
		clear: both;
		position: relative;
		top: 0
	}
}

.search__suggestion p a {
	width: 26%;
	display: inline-block
}