.pulsesingle {
    background: rgb(222, 84, 72);
    border-radius: 50%;
    height: 30px;
    width: 30px;
    box-shadow: 0 0 0 0 rgba(222, 84, 72, 1);
    transform: scale(1);
    animation: pulsesingle 2s infinite;
}

@keyframes pulsesingle {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(222, 84, 72, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(222, 84, 72, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(222, 84, 72, 0);
    }
}           

.pulse-wrapper {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.pulse {
    background: rgb(var(--pulse-color));
    border-radius: 50%;
    height: 30px;
    width: 30px;
    box-shadow: 0 0 0 0 rgba(var(--pulse-color), 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

.pulse-play-button {
  --pulse-color: 222, 84, 72;
  background: rgb(var(--pulse-color));
  border-radius: 50%;
  height: 80px;
  width: 80px;
  box-shadow: 0 0 0 0 rgba(var(--pulse-color), 1);
  transform: scale(1);
  animation: pulse 2s infinite;
  position: relative;
}

.pulse-play-button-120{
    height: 120px;
    width: 120px;
}
.pulse-play-icon {
  border-left: 30px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  top: 50%; /*20px;*/
  left: 55%; /*28px;*/
  transform: translate(-50%,-50%);
}


@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--pulse-color), 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(var(--pulse-color), 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--pulse-color), 0);
    }
}

/* Define different color circles */
.pulse.red {
  --pulse-color: 222, 84, 72;
}
.pulse.blue {
  --pulse-color: 66, 103, 178;
}
.pulse.green {
  --pulse-color: 76, 175, 80;
}
.pulse.yellow {
  --pulse-color: 255, 210, 63;
}           
    

/*.css-button-sliding-to-left--blue {
  min-width: 130px;
  height: 40px;
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  z-index: 0;
  background: #fff;
  overflow: hidden;
  border: 2px solid #2c0b8e;
  color: #2c0b8e;
}
.css-button-sliding-to-left--blue:hover {
  color: #fff;
}
.css-button-sliding-to-left--blue:hover:after {
  width: 100%;
}
.css-button-sliding-to-left--blue:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #2c0b8e;
}
*/


.glass{
    background: rgba(255,255,255,0.25);
    box-shadow: 20px 20px 40px -6px rgba(0,0,0,0.2);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border-radius: 10px;
}


