.whatsapp {
	/* border: 1px solid magenta; */
	position: fixed;
	bottom: 4rem; right: 4rem;
	z-index: 999;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 1rem;
	z-index: 20;
}

.whatsapp .whatsapp-logo {
	/* border: 1px solid magenta; */
	background-color: var(--merah);
	color: white;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	border-radius: 100px;
	align-items: center;
	font-size: 3.6rem;
	cursor: pointer;
}

.whatsapp .whatsapp-popup {
	/* border: 1px solid blue; */
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	overflow: hidden;
	width: 0;
	height: 0;
	transition: all .3s ease;
}

.whatsapp .whatsapp-popup--active {
	transition: all .3s ease;
	overflow: unset;
	width: auto;
	height: auto;
}

.whatsapp-popup .whatsapp-cs {
	display: flex;
	position: relative;
	background-color: var(--merah);
	border-radius: .5rem;
	padding: .5rem 2rem;
	align-items: center;
	justify-content: flex-end;
	padding-left: 3rem;
}

.whatsapp-popup .whatsapp-cs img {
	width: 5rem;
	height: 5rem;
	border-radius: 99rem;
	margin: auto;
	top: 0;
	bottom: 0;
	left: -2.5rem;
	position: absolute;
	border: 4px solid var(--merah);
}

@media only screen and (max-width: 1024px) {
	/* responsive whatsapp */
}

@media only screen and (max-width: 768px) {
	/* responsive whatsapp */
}

@media only screen and (max-width: 425px) {
	.whatsapp {
		bottom: 2rem; right: 2rem;
	}
}

@media only screen and (max-width: 320px) {
	/* responsive whatsapp */
}

@media only screen and (max-width: 280px) {
	/* responsive whatsapp */
}