﻿
.homeNotification {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 10; }

.homeNotification-btn {
      width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #9d865c;
    color: #fff;
    text-align: center;
    box-shadow: -0.696px 4.951px 12px 0px rgba(239, 235, 235, 0.25);
    padding-top: 15px;
    cursor: pointer;
    position: relative;

          background: url(2s.png);
    background-position: center center;
    background-size: cover;

}

    .homeNotification-btn:before {
        content: '';
        position: absolute;
        width: 130px;
        height: 130px;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
        -webkit-animation: pulsate-btn 2s;
        animation: pulsate-btn 2s;
        -webkit-animation-direction: forwards;
        animation-direction: forwards;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: steps;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid rgba(163, 163, 163, 0.4);
        top: -15%;
        left: -15%;
        background: rgb(243, 243, 243);
    }




  .homeNotification-btn .homeNotification--title {
    font-size: 16px;
    display: block;
    text-align: center;
     
  }

 



@-webkit-keyframes pulsate-btn {
    0% {
        -webkit-transform: scale(0.6, 0.6);
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        -webkit-transform: scale(0.6, 0.6);
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}








