/* Walk-In Notary — Office Hours Widget styles */
.win-open-status {
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  background: #f0faf8;
  border: 2px solid #1a9e75;
  max-width: 500px;
  margin: auto;
}
.open-status {
  font-size: 16px;
  margin-bottom: 20px;
}

.open-status.open strong,
.open-status.open i {
  color: #00928c;
}

.open-status.closed {
	color: #b00020;
    font-weight: 600;
    background: #ffe6e9;
    border: 2px solid #dd2e44;
}

.fa-solid.fa-circle {
  top: -2px;
  position: relative;
  right: 3px;
  font-size: 12px;
}

#concierge,
.concierge {
  -webkit-box-shadow: 0 0 0 0 black;
          box-shadow: 0 0 0 0 black;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  border-radius: 50%;
}

@-webkit-keyframes pulse {
  0%   { -webkit-transform: scale(0.95); transform: scale(0.95);
         -webkit-box-shadow: 0 0 0 0 rgba(0,183,175,0.85); box-shadow: 0 0 0 0 rgba(0,183,175,0.85); }
  70%  { -webkit-transform: scale(1);    transform: scale(1);
         -webkit-box-shadow: 0 0 0 10px rgba(0,183,175,0);  box-shadow: 0 0 0 10px rgba(0,183,175,0); }
  100% { -webkit-transform: scale(0.95); transform: scale(0.95);
         -webkit-box-shadow: 0 0 0 0 rgba(0,183,175,0);     box-shadow: 0 0 0 0 rgba(0,183,175,0); }
}

@keyframes pulse {
  0%   { -webkit-transform: scale(0.95); transform: scale(0.95);
         -webkit-box-shadow: 0 0 0 0 rgba(0,183,175,0.85); box-shadow: 0 0 0 0 rgba(0,183,175,0.85); }
  70%  { -webkit-transform: scale(1);    transform: scale(1);
         -webkit-box-shadow: 0 0 0 10px rgba(0,183,175,0);  box-shadow: 0 0 0 10px rgba(0,183,175,0); }
  100% { -webkit-transform: scale(0.95); transform: scale(0.95);
         -webkit-box-shadow: 0 0 0 0 rgba(0,183,175,0);     box-shadow: 0 0 0 0 rgba(0,183,175,0); }
}