:root {
  --card-title-color-red: linear-gradient(
    196deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(255, 25, 25, 1) 0%,
    rgba(190, 30, 30, 1) 59%,
    rgba(138, 0, 0, 1) 100%
  );
  --card-title-color-blue: linear-gradient(
    196deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(31, 116, 167, 1) 0%,
    rgba(30, 84, 190, 1) 59%,
    rgba(0, 47, 138, 1) 100%
  );
  --card-title-color-purple: linear-gradient(
    49deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(120, 31, 167, 1) 0%,
    rgba(121, 30, 190, 1) 59%,
    rgba(67, 0, 138, 1) 100%
  );
  --card-title-color-green: linear-gradient(
    49deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(143, 167, 31, 1) 0%,
    rgba(114, 190, 30, 1) 59%,
    rgba(54, 138, 0, 1) 100%
  );
}

.chat-container {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 10px;
  z-index: 1000;
}

.chat-widget {
  width: 300px;
  background-color: #212529;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transform: translateY(100%);
  opacity: 0;
}

.chat-widget.show {
  animation: slide-up 0.3s ease-out forwards;
}

.chat-widget.hide {
  animation: slide-down 0.3s ease-out forwards;
}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

.chat-header {
  background-color: #4b368b;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.chat-header h3 {
  font-size: 16px;
  margin: 0;
}

.chat-body {
  height: 400px;
  overflow-y: auto;
  padding: 10px;
}

.chat-footer {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #000000;
}

.chat-footer input[type="text"] {
  flex: 1;
  padding: 8px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.chat-footer button {
  padding: 8px 15px;
  background-color: #4b368b;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.chat-icon {
  position: fixed;
  bottom: 0;
  right: 0;
  margin-right: 40px;
  margin-bottom: 20px;
  font-size: 50px;
  color: rgb(253 80 80);
  cursor: url(hand.cur), pointer;
  -webkit-text-stroke: 1px black;
}

.chat-icon:hover {
  color: #01ffff;
}

.chat-header-icon {
  cursor: url(hand.cur), pointer;
}
.chat-header-icon:hover {
  color: #00ccff;
}

.chat-icon-title {
  position: fixed;
  bottom: 0;
  right: 0;

  color: rgb(80 241 253);
  cursor: url(hand.cur), pointer;

  font-size: 22px;
  font-style: unset;
}

.chat-card {
  width: 98%;
  height: 70px;
  border-radius: 10px;
  background-color: rgb(73, 73, 73);
  color: white;
  margin-top: 15px;
  display: flex;
  align-items: start;
}

.chat-card:hover {
  background-color: black;
  cursor: pointer;
}

.chat-card-title {
  -ms-flex-align: start;
  display: block;
  height: 100%;
  min-width: 75px;
  background: rgb(2, 0, 36);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  align-content: center;

  border-color: black;
}

.grad-blue {
  background: rgb(2, 0, 36);
  background: var(--card-title-color-blue);
}
.grad-green {
  background: rgb(2, 0, 36);
  background: var(--card-title-color-green);
}
.grad-red {
  background: rgb(2, 0, 36);
  background: var(--card-title-color-red);
}
.grad-purple {
  background: rgb(2, 0, 36);
  background: var(--card-title-color-purple);
}

.chat-card-img {
  -ms-flex-align: start;
  display: inline;
}
.chat-card-body {
  margin: 10px;
  -ms-flex-align: end;
  display: block;
  text-align: left;
  font-size: 13px;
}

/*======================================= ICON ANIMATIONS =======================================================*/

.pulse-icon {
  font-size: 48px; /* Adjust size as needed */
  color: #ff6347; /* Adjust color as needed */
  animation: pulsate 2.2s ease-in-out infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/*=====================================*/

.shimmer-icon {
  position: relative;
  font-size: 48px; /* Adjust size as needed */
  color: #f0e68c; /* Adjust color as needed */
}

.shimmer-icon::before,
.shimmer-icon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 2s infinite;
}

.shimmer-icon::after {
  animation-delay: 1s;
}

@keyframes sparkle {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

#callme input {
  border-radius: 5px;
}

#callme button {
  background-color: black;
  color: white;
  font-weight: 900;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border:none;
  outline:none;
}
