.floating-button-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.floating-button {
  display: flex;
}

.floating-button button {
  width: 60px;
  height: 60px;
  padding: 10px;
  background-color: #00bb2d; /* Color de fondo del botón */
  color: #fff; /* Color del texto del botón */
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.floating-msg {
  padding: 10px;
  margin-right: 10px;
  background-color:#eee;
  border-radius: 5px;
}

.floating-msg span{
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.popup-content {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 400px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup-header {
  padding: 20px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  background-color:#00bb2d ;
}

.popup-content p{
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.popup-header p {
  color: #fff;
}

.popup-main {
  padding: 10px 20px;
  text-align: center;
}

.popup-content .popup-footer {
  padding: 10px 20px;
}

.popup-content a{
  display: block;
  padding: 20px;
  border-radius: 5px;
  border-left: 5px solid #00bb2d;
  background-color:#F5F5F5;
  margin: 12px 0;
}

.popup-content a:hover{
  border-left: 0px;
  background-color:#ccc;
}

.popup-content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.floating-msg {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  display: block;
}

.rotate-icon {
  transform: rotate(360deg);
  transition: transform 0.5s ease-in-out;
}

.rotate-icon-reverse {
  transform: rotate(-45deg);
}


@media (max-width: 600px) {
	.floating-button-container {
		bottom: 10px;
	}

	.popup-content {
		bottom: 80px;
		width: 90%;
	}

	.popup-content p {
		font-size: 14px;
	}
}