#show {
	/*background-color: #7c7fe0;
	border: 0;
	color: #fff;
	padding: 10px 20px;
	text-transform: uppercase;
	cursor: pointer;
	outline: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	 */
    display: none;
	position: relative;
	top: 150px;
	right: -90%;
	width: 56px;
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 9998;
	margin-top: -63px;
}

.navigation {
	position: fixed;
	width: 300px;
	height: 100%;
	top: 0;
	overflow-y: auto;
	overflow-x: hidden;
	opacity: 0;
	visibility: hidden;
	z-index: 9999;
	transition-delay: 300ms;
	left: 0;
}

.navigation.active {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}

.navigation.active .navigation__inner {
	background-color: #414042;
	transform: translate(0, 0);
	transition: transform 300ms linear, background-color 0s linear 599ms;
}

.navigation.active .navigation__inner:after {
	width: 300%;
	border-radius: 50%;
	animation: elastic 150ms ease 300.5ms both;
}

.navigation__inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 9999;
	transform: translate(-100%, 0);
	transition: transform 300ms linear, background-color 0s linear 300ms;
	display: flex;
	flex-direction: column;
}

.navigation__inner .close{
	text-align: right;
	padding-right: 15px;
	padding-top: 15px;
	margin-bottom: -30px;
	z-index: 999;
}

.navigation__inner .logo {
	padding-left: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #6D6E71;
}

.navigation__inner .logo img {
	height: 25px;
}

.navigation__inner .call {
	padding-left: 10px;
	padding-bottom: 10px;
	padding-top: 10px;
	border-bottom: 1px solid #6D6E71;
	font-size: 14px;
}

.navigation__inner .message {
	padding-left: 10px;
	padding-bottom: 10px;
	padding-top: 10px;
	border-bottom: 1px solid #6D6E71;
	font-size: 14px;
}

.navigation__inner .call img, .navigation__inner .message img{
	margin-right: 5px;
}

.navigation__inner ul {
	padding: 0;
	list-style: none;
	margin: 0;
	font-size: 14px;
}

.navigation__inner ul li {
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #6D6E71;
}

.navigation__inner ul li a {
	margin-left: 10px;
}

.navigation__inner .foot {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 14px;
}

.navigation__inner .foot .icons {
	display: flex;
	justify-content: space-between;
	width: 145px;
	margin: 0 auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

.navigation__inner .foot .phone {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding-bottom: 10px;
}

.navigation__inner .foot .phone a, .navigation__inner .foot .phone span {
	margin: 0 auto;
}

.navigation__inner .foot .phone a {
	font-size: 18px;
	color: #EF405B;
}

.navigation__inner .foot .phone span {
	font-size: 12px;
}

.navigation__inner .foot .email {
	width: 145px;
	margin: 0 auto;
	padding-top: 10px;
}

.navigation__inner .foot .icons a {
	width: 145px;
	margin: auto;
}

.navigation__inner:after {
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	background-color: #414042;
	border-radius: 50%;
	z-index: -1;
	transition: all 300ms linear;
}

@keyframes elastic {
	0% {
		border-radius: 50%;
	}

	45% {
		border-radius: 0;
	}

	65% {
		border-top-right-radius: 40px 50%;
		border-bottom-right-radius: 40px 50%;
	}

	80% {
		border-radius: 0;
	}

	90% {
		border-top-right-radius: 20px 50%;
		border-bottom-right-radius: 20px 50%;
	}

	100% {
		border-radius: 0;
	}
}

@media screen and (max-width: 1180px) {
    #show {
        display: block;
    }
}
