#affiliate_class{
  background-color: #004A7F !important;
  margin-left:15px !important;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
}

 /* Style for the main button */
    .main-affiliate {
      position: relative;
      display: inline-block;
      padding-right: 25px; 
    }

   
    .new-button {
      position: absolute;
      bottom: 75%;
      right: 85%;
      background-color: #B20000; 
      color: #fff; 
      padding: 3px 8px;
      border-radius: 20%; 
      font-size: 12px; 
        -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
    }

	    @-webkit-keyframes glowing {
  0% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; -webkit-box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
}

@-moz-keyframes glowing {
  0% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; -moz-box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
}

@-o-keyframes glowing {
  0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
}

@keyframes glowing {
  0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
}

@media only screen and (max-width: 600px) {
  #affiliate_class{
      margin-left: 0 !important;
      margin-top:1.5rem !important;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: auto;
  }
  
  #home_reg{
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  
   .main-affiliate {
      margin:auto;
  }
}