/*modal*/

.button-chat {
	position: fixed;
	cursor: pointer;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.button-chat:hover{
	filter: drop-shadow(2px 4px 6px black);
}

.chat-modal {
	width: 335px;
    height: 369px;
	-webkit-transform: inherit;
    transform: inherit;
	color: white;
	background-color: black;
	border-radius: 24px;
	right: 24px;
    bottom: 24px;
	top: auto;
    left: auto;
}

.chat-modal
.modalContent {
	position: relative;
}

.chat-modal
.photo {
	width: 96px;
	height: 96px;
	border-radius: 50%;
}

.chat-modal-text {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 6px; 
}
.chat-modal
.caption div {
	margin: 6px 0;
}

.chat-modal
.link-whatsapp {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 100%;
	font-size: 16px;
	border-radius: 40px;
	background-color: rgba(97, 172, 97, 1);
	padding: 20px 0;
	margin-top: 32px;
}

.chat-modal
.modalClose {
	position: absolute;
    filter: invert(1);
    top: 0;
    right: 0;
}
   

@media (max-width: 1024px) {
	.your-savings-modal button{
		top: 16px;
		right: 16px;
	}
}

@media (max-width: 600px) {
	.your-savings-modal {
  		max-width: 343px;
		margin-top: 56px;
	}
}