.title {
  text-align: center;
}

.v-button-set {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.v-button-set .v-button {
  margin: 0.5em;
  background-color: #a9a9a9;
}

.v-button-set .v-active {
  background-color: #288ec8;
}

.v-button-set .v-button:hover {
  background-color: #4187af;
}

.highlight {
  animation: hlt 5s ease !important;
}

@keyframes hlt {
  10% {
    box-shadow: 0 0 5px 5px rgb(255, 208, 0);
  }
  100% {
    box-shadow: 0 0 5px 5px transparent;
  }
}

@media screen and (max-width: 991px) {
  .v-floating-details {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    padding: 0 15px 5px;
    font-size: 1rem;
    border: none;
    background: #2c99ce;
    color: #fff;
    border-radius: 20px 20px 0 0;
    font-weight: 600;
    z-index: 3;
    opacity: 0.7;
    margin-bottom: 0;
    text-align: center;
  }
  .v-floating-details > .v-detail-title {
    display: none;
  }
  body {
    padding-bottom: 40px;
  }
}
