@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
	--white: #fff;
	--grey900: #48556A;
	--grey500: #6E8098;
	--grey400: #9DAEC2;
	--grey200: #ECF2F8;
}
body {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	font-family: "Manrope", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.3em;
	background-color: var(--grey200);
	margin: 0;
}
main {
	max-width: 730px;
	display: flex;
	justify-content: space-between;
	border-radius: 10px;
	-webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
	color: var(--grey500);
	background: var(--white);
}
.medium {
	font-weight: 500;
}
strong {
	font-weight: 700;
}
.light-grey {
	color: var(--grey400);
}
.dark-grey {
	color: var(--grey900);
}
#main-left {
	width: 285px;
	background: url(images/drawers.jpg) bottom left no-repeat;
	background-size: 130%;
	box-sizing: border-box;
}
#main-right {
	max-width: 445px;
	padding: 30px 40px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	position: relative;
}
#image {
	display: none;
}
#flex-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 24px 0 0;
	position: relative;
}
#flex-contact {
	display: flex;
	align-items: center;
}
#flex-contact img {
	margin-right: 16px;
}
h1 {
	color: var(--grey900);
	font-size: 20px;
	line-height: 1.3em;
	letter-spacing: .25px;
	margin: 0 0 24px;
}
#contact-picture {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
#share-icon {
	background: var(--grey200);
	color: var(--white);
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
#share-box {
	background: var(--grey900);
	color: var(--grey400);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 248px;
	border-radius: 10px;
	padding: 18px;
	box-sizing: border-box;
	letter-spacing: .25em;
	position: absolute;
	top: -70px;
	right: -107px;
	-webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
	display: none;
}
#share-box::after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	height: 12px;
	width: 24px;
	background: var(--grey900);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}
#share-box div:not(:last-of-type) {
	margin-right: 24px;
}
.visible {
	display: flex !important;
}
.btn-color {
	background: var(--grey500) !important;
}
@media (min-width: 320px) and (max-width: 480px) {
	body {
		height: inherit;
	}
	main {
		flex-direction: column;
		margin: 30px 10px;
	}
	#main-left {
		height: 200px;
		background: url(images/drawers.jpg) bottom left no-repeat;
		background-size: 100%;
		width: 100%;
		-webkit-border-top-left-radius: 10px;
		-webkit-border-top-right-radius: 10px;
		-moz-border-radius-topleft: 10px;
		-moz-border-radius-topright: 10px;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}
	#main-right {
		padding: 30px;
		flex-direction: column;
	}
}