/*button animation*/

        .pulse-button {
            /*padding: 20px 40px;*/
            /*font-size: 24px;*/
            color: #fff;
            /*background: #6200ea;*/
            border: none;
            /*border-radius: 10px;*/
           /* box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);*/
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            }
        }

/*unaniday button css*/

.unaniday {
  border: none;
  color: white;*/
  padding: 15px 32px;
  margin-left: 705px;

  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  /*margin: 4px 2px;*/
  cursor: pointer;
  /////
  /*cursor: pointer;*/
  /*font-size: 16px;*/
  /*transition: all 0.3s ease;*/
}

.unaniday {background-color: #04AA6D;} /* Green */
.unaniday1:link, .unaniday1:visited {
  background-color: #556219;
  color: white;
  padding: 6px 8px;
  text-align: center;
  text-decoration: none;
  display: inline;
}

.unaniday1:hover, .unaniday1:active {
  background-color: #7D6852;}
  .unaniday:hover {box-shadow: 0 8px 16px 0 rgba(0,0,0,0.6);
    -webkit-animation: none;
}