.hotelcard {
  position: relative;
  &:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  a {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px;
    overflow: hidden;
  }
}
#features {
  ul {
    list-style: none;
    padding-left: 1em;
    margin-left: 0;
    li {
      text-indent: -1em;
    }
  }
}
#to-use-cpon {
  position: fixed;
  right: 0;
  bottom: 20px;
  width: 50px;
  height: 90px;
  @media (min-width: 768px) {
    right: 20px;
    width: 250px;
    height: 98px;
  }
  button {
    width: 100%;
    height: 100%;
    transition: background-color 0.2s ease;
    background-color: #ff4038;
    color: #fff;
    border-radius: 10px;
    padding-left: 40px;
    @media (max-width: 768px) {
      padding-top: 10px;
      padding-left: 0;
      writing-mode: vertical-rl;
      font-size: 8px;
      border-radius: 6px 0 0 6px;
    }
    svg {
      position: absolute;
      right: 15px;
      @media (max-width: 768px) {
        display: none;
      }
    }
    &:hover {
      background-color: #ffb100;
    }
  }
}
