*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	user-select: none;
}

/* Generic */
body {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	background-color: #fff;
	color: #a0a5a8;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	width: 49.875rem;
	height: 100%;
	padding: 1.25rem;
	background-color: #fff;
	transition: 1.25s;
}

.b_container {
	left: calc(100% - 49.875rem);
	z-index: 0;
}

.switch {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 70.125rem;
	padding: 50px;
	z-index: 200;
	transition: 1.25s;
	background-color: #D7EAF3;
	overflow: hidden;
}

.switch__container {
	width: 60rem;
}

.switch__container img{
	width: 100%;
}