.floating-button {
  position: fixed;
  bottom: 100px;
  right: 5vw;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.floating-button.hide {
  opacity: 0;
  visibility: hidden;
}

.floating-button img {
  width: 20vw;
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.floating-apply-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
  color: #0058ff;
  font-weight: bold;
  font-size: 10px;
  max-font-size: 17px;
  width: 20vw;
  max-width: 100px;
  height: 8vw;
  max-height: 30px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 320px) {
  .floating-button {
    bottom: 80px;
    right: 3vw;
  }

  .floating-apply-link {
    font-size: 10px;
    width: 25vw;
    height: 9vw;
  }
}
