.smb-anniv-icon{
  position: fixed;
  bottom: 175px;
  right: 10px;
  z-index: 30;
  cursor: pointer;

  transition-property: bottom;
  transition: .3s ease-out;
}

.smb-anniv-icon.hide{
  display: none;
}

.smb-anniv-icon.free{
  /* bottom: 100px; */
  top:5rem;
}

.smb-anniv-icon img{
  aspect-ratio: 1 / 1;
  width: 130px;
}

.smb-anniv-popup{
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 900;
  inset: 0;
  background-color: rgb(0,0,0,.8);
}

.smb-anniv-popup.show{
  display: flex;
}

.smb-pop-container{
  position: relative;
  padding: 2rem;
  background-image: url('https://www.sanmiguelbrewery.com.ph/photos/anniv/white-bg-tile.jpg');
  background-repeat: repeat;
  background-color: #fff;
}

.smb-pop-container h2{
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #E40521;
  text-align: center;
}

.smb-pop-container p,
.smb-pop-container .link-content p{
    margin: 0;
    color: #000;
    font-weight: 700;
    text-align: center;
}

.smb-pop-container .close{
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url('https://www.sanmiguelbrewery.com.ph/photos/anniv/close.png');
  background-size: 100% 100%;
  cursor: pointer;
}

.smb-pop-container .link-contents{
  display: flex;
  gap:1rem;
  margin-top: 1rem;
  align-items: flex-start;
  justify-content: space-between;

}
.smb-pop-container .link-content{
  position: relative;
  background-color: rgb(0,0,0,.1);
  border: solid 2px transparent;

  transition-property: border;
  transition: .5s ease-out;
  cursor: pointer;
}

.smb-pop-container .link-content:hover{
  border: solid 2px #E40521;
}

.smb-pop-container .link-content img{
  width: 100%;
  max-width: 20rem;
}

.smb-pop-container .link-content div{
  position: relative;
  padding: 1rem
}

.smb-pop-container .link-content p{
  text-align: left;
  margin-bottom: .2rem;
}

.smb-pop-container .link-content p.red{
  margin: 0;
  font-size: .9rem;
  display: block;
  color: #E40521;
}

.smb-pop-container .link-content::after{
  content: '';
  display: block;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 20px;
  height: 20px;
  background-image: url('https://www.sanmiguelbrewery.com.ph/photos/anniv/red-rect.png');
  background-size: 100% 100%;
}

@media only screen and (max-width: 1600px) {
  .smb-anniv-icon{
    bottom: 225px;
  }

  .smb-anniv-icon img{
    width: 90px;
  }
}

@media only screen and (max-width: 1024px) {
  .smb-anniv-icon,
  .smb-anniv-icon.free{
    bottom: 195px;
  }
}

@media only screen and (max-width: 580px) {
  .smb-pop-container{
    width: 80%;
    height: 80%;
  }
  .smb-pop-container .close{
    width: 2rem;
    height: 2rem;
  }

  .smb-pop-container .link-contents{
    flex-direction: column;
    overflow-y: auto;
    gap:2rem;
    height: calc(100% - 80px);
  }

  .smb-pop-container .link-content img{
    max-width: 100%;
  }
}

@media only screen and (max-width: 550px) {
  .smb-anniv-icon{
    bottom: 100px;
  }
}