#contact-widget {
  position: fixed;
  bottom: 0px;
  right: 20px;
  width: 280px;
  background-color: var(--purple);
  /* box-shadow: -1px -1px 3px rgba(0, 0, 0, 0.4); */
  font-family: Arial, sans-serif;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  border-radius: 25px 25px 0 0;
  /* border: 1px solid white; */
  border-bottom: none;
}

.contact-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 15px;
  background-color: var(--purple);
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  font-size: 1.3rem;
}


.contact-widget-toggle {
  background: none;
  border: none;
  cursor: pointer;
  transform: rotate(0deg);
  padding-top: 10px;
  padding-bottom: 10px;
  transition: transform 0.3s ease-in-out;
  color: #fff;

}

.contact-widget-header.open .contact-widget-toggle {
  transform: rotate(180deg);
}

.contact-widget-content {
  display: none;
  padding: 10px 15px 25px;
  font-size: 1rem;
  color: white;
  line-height: 1.5;
  border-top: 1px dotted white;
  text-align: center;

}

.contact-widget-content {
  margin-bottom: 15px;
}

.contact-widget-content .contact-widget-call,
.contact-widget-content a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  background-color: var(--light-blue);
  color: var(--purple);
  border-radius: 15px;
  padding: 7px 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-widget-call i {
  margin-right: 8px;
}

.contact-widget-hours {
  margin-top: 3px;
  font-size: 12px;
  color: #fff;
}

#contact-widget .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  position: relative;
  top: -4px;
}


@media screen and (max-width: 767px) {

  #contact-widget {
    right: 50%;
    transform: translateX(50%);

  }


}