.raffle-container {
  position: fixed;
  display: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #ef7c25;
  border-right: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 0 10px;
  background: #ffffff;
  z-index: 49;
}

.raffle-container .raffle-box {
  display: block;
  margin: 10px 0;
  height: 60px;
  width: 60px;
  background: #fff;
  border: 1px solid #444;
  border-radius: 5px;
  overflow: hidden;
  padding: 2px;
  opacity: .3;
}

.raffle-container .raffle-box.item-found {
  opacity: 1;
}

.raffle-container .raffle-box img {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
}

.raffle-container .info-box {
  border: 1px solid #ef7c25;
  opacity: 1;
  text-align: center;
}

.raffle-container .info-box a {
  display: block;
  padding: 4px 0;
}

.raffle-container .info-box i {
  font-size: 48px;
}

.raffle-button {
  display: block;
  text-align: center;
  margin: 20px 10px;
  z-index: 45;
}

.raffle-button img {
  height: 100px;
  width: auto;
  z-index: 48;
  animation: pulse 3s infinite;
  animation-timing-function: ease;
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 575px) {
  .raffle-container {
    padding: 0 3px;
    right: 0;
    left: 0;
    top: auto;
    bottom: -5px;
    transform: none;
    text-align: center;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0;
  }

  .raffle-container .raffle-box {
    height: 30px;
    width: 30px;
    margin: 3px 0;
    display: inline-block;
  }

  .raffle-container .info-box a {
    padding: 1px 0;
  }

  .raffle-container .info-box i {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .raffle-container {
    padding: 0 6px;
  }

  .raffle-container .raffle-box {
    height: 40px;
    width: 40px;
    margin: 3px 0;
  }

  .raffle-container .info-box a {
    padding: 2px 0;
  }

  .raffle-container .info-box i {
    font-size: 30px;
  }
}
