.remus {
	position: relative;
	display: flex;
	max-width: 100%;
	width: 100%;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-ms-user-select: none;
	-webkit-user-drag: none;
	-moz-user-drag: none;
	user-drag: none;
	-ms-user-drag: none;
}

.remus > * {
	width: 100%;
}

.remus .remus-element {
	width: 100%;
	overflow: hidden;
	display: inline-block;
}

.remus .remus-element > * {
	position: relative;
}

.remus > :first-child {
	position: relative;
}

.remus :not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
}

.remus .remus-handle {
	border-radius: 100%;
	cursor: pointer;
	padding: 0;
	width: 50px;
	height: 50px;
	background-color: white;
	background-image: url("../img/svg/logo_new.svg");
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	transition: box-shadow 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.remus .remus-handle:hover {
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.remus .remus-handle:active {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.remus-handle::after,
.remus-handle::before {
	--height: 20px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(var(--height) * 1.21);
	height: var(--height);
	background-color: transparent;
	animation: arrowAnim 1s linear infinite;
	transition: opacity 0.3s;
}

.remus-handle::after {
	content: url(../img/svg/arrow-white-right.svg);
	right: -45px;
}

.remus-handle::before {
	content: url(../img/svg/arrow-white-left.svg);
	left: -22px;
}

.remus-handle:hover::after,
.remus-handle:hover::before {
	opacity: 0;
}

@keyframes arrowAnim {
	0% {
		transform: translate(-50%, -50%);
	}
	50% {
		transform: translate(-50%, -50%) scale(1.1);
	}
	100% {
		transform: translate(-50%, -50%);
	}
}
