.button-container {
    position: relative;
    position: fixed;
    bottom: 6.37rem;
    right: 1.81rem;
    z-index: 100;
}

.pulse-button {
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: radial-gradient(#001C54, #001C54 1.52rem, #fff 1.6rem, #fff);
    border: 0.187rem solid #001C54;
    text-align: center;
    display: inline-flex;
    z-index: 11;
    color: #FFFFFF;
    text-transform: capitalize;
    width: 3.75rem;
    height: 3.75rem;
    font-weight: 700;
    font-size: 0.68rem;
    line-height: 0.875rem;
    align-items: center;
    text-align: center;
}

.button-container:hover .pulse-button {
    background: radial-gradient(#e00000, #e00000 1.52rem, #fff 1.6rem, #fff);
    border: 0.187rem solid #e00000;
}


.pulse-button-img {
    background-image: url(../img/pulse-btn.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 95%;
    height: 95%;
    border: 1.5px solid #fff;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    background-size: 1rem;
}

.pulse-button.active .pulse-button-img{
    background-image: url(../img/pulse-btn-close.svg);
}



@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.pulse-button::before {
    content: '';
    position: absolute;
    width: 3.75rem;
    height: 3.75rem;
    border: 6px solid #001C54;
    border-radius: 50%;
    animation: pulse 2s infinite;
    pointer-events: none;
    opacity: 80%;
}

.button-container:hover .pulse-button::before{
    border: 6px solid #e00000;
}



.modal-pulse-btn {
    display: none;
    position: absolute;
    /* padding: 1rem; */
    border-radius: 5px;
    /* z-index: 999; */
    width: 23rem;
    left: -19rem;
    top: -14rem;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(16px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.modal-pulse-btn ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modal-pulse-btn ul::after{
    content: "";
    position: absolute;
    bottom: -1rem;
    right: 1.65rem;
    border-left: 0.5rem solid transparent;
    border-right: 0.5rem solid transparent;
    border-bottom: 0.5rem solid rgba(255, 255, 255, 0.90);
    z-index: 1rem;
    width: 1rem;
    height: 1rem;
    transform: scaleY(-1);
}

.modal-pulse-btn li {
    /* margin-bottom: 1rem; */
    cursor: pointer;
    padding: 1rem;
}

.modal-pulse-btn li:first-child{
    margin-bottom: -0.5rem;
}

.modal-pulse-btn li:hover {
    background-color: #f0f0f0;
}

.pulse-modal-img{
    height: 2.5rem;
    margin-right: 0.5rem;
}

.pulse-modal-social-name{
    font-family: 'Roboto',sans-serif,Arial;
    font-size: 1rem;
    color: #001C54;
    padding: 0;
}

.pulse-modal-social-link{
    display: flex;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .button-container {
        position: relative;
        position: fixed;
        bottom: 4.2rem;
        z-index: 100;
        right: 0.59rem;
      }
      
      .pulse-button::before{
        height: 2.5rem;
        width: 2.5rem;
      }
      
      .pulse-button{
        justify-content: center;
          cursor: pointer;
          border-radius: 50%;
          background: radial-gradient(#001C54, #001C54 1.52rem, #fff 1.6rem, #fff);
          border: 0.187rem solid #001C54;
          text-align: center;
          display: inline-flex;
          z-index: 11;
          color: #FFFFFF;
          text-transform: capitalize;
          font-weight: 700;
          font-size: 0.68rem;
          line-height: 0.875rem;
          align-items: center;
          text-align: center;
          width: 2.5rem;
          height: 2.5rem;
      
      }
}