.v-slide {
  position: relative;
}
.v-slide .v-flex {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.v-slide .v-flex .v-button {
  color: white;
  text-align: center;
  width: 300px;
  height: 300px;
  border-radius: 400px;
  background-color: tomato;
  padding: 20px;
  font-size: 30pt;
  line-height: 30pt;
  align-items: center;
  justify-content: center;
  display: none;
  cursor: pointer;
  text-transform: uppercase;
  pointer-events: all;
  user-select: none;
}
.v-slide .v-flex .v-button:hover {
  opacity: 1 !important;
  background-color: tomato;
  color: white;
}
.v-slide .v-flex:hover .v-button {
  display: flex;
}
.hooper-indicator {
  width: 8px !important;
  height: 8px !important;
}
.hooper-indicator.is-active {
  background-color: tomato !important;
}

@keyframes enter {
0% {
    opacity: 0;
    top: -10px;
}
5% {
    opacity: 1;
    top: 0px;
}
50.9% {
    opacity: 1;
    top: 0px;
}
55.9% {
    opacity: 0;
    top: 10px;
}
}
.z-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.z-square {
  background: white;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  float: left;
  top: -10px;
  margin-right: 5px;
  margin-top: 5px;
  position: relative;
  opacity: 0;
  -webkit-animation: enter 6s infinite;
  animation: enter 6s infinite;
}
.enter {
  top: 0px;
  opacity: 1;
}
.z-square:nth-child(1) {
  animation-delay: 1.8s;
}
.z-square:nth-child(2) {
  animation-delay: 2.1s;
}
.z-square:nth-child(3) {
  animation-delay: 2.4s;
  background: #ef333f;
}
.z-square:nth-child(4) {
  animation-delay: 0.9s;
}
.z-square:nth-child(5) {
  animation-delay: 1.2s;
}
.z-square:nth-child(6) {
  animation-delay: 1.5s;
}
.z-square:nth-child(8) {
  animation-delay: 0.3s;
}
.z-square:nth-child(9) {
  animation-delay: 0.6s;
}
.clear {
  clear: both;
}
.last {
  margin-right: 0;
}
#top-menu {
  background-color: mediumaquamarine;
  color: white;
}
#top-menu a {
  color: inherit;
  font-weight: bold;
}
#top-menu a:hover {
  text-decoration: underline;
}
#categories {
  text-align: center;
}
#categories span {
  display: inline-block;
  margin: 0 10px;
  text-transform: uppercase;
  font-size: 8pt;
  letter-spacing: 1px;
  cursor: pointer;
}
#categories span:hover {
  color: tomato;
}
#categories span:active {
  text-decoration: overline;
}
#categories span.active {
  font-weight: bold;
  color: tomato;
}
.palm {
  display: inline-block;
  margin: 15px;
  padding: 10px;
  background-color: white;
  filter: drop-shadow(0 0 10px #ccc);
  position: relative;
  overflow: hidden;
}
.palm .description {
  text-align: center;
  position: absolute;
  top: 220px;
  left: 0;
  width: 220px;
  height: 220px;
  background-color: #32c8fa;
  transition: top 0.5s;
  padding: 10px;
  cursor: pointer;
}
.palm .description img.stamp {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin: 10px 0;
  display: inline-block;
  border: solid 2px white;
  padding: 2px;
}
.palm:hover .description {
  top: 0;
  transition: top 0.25s;
}
.palm img {
  display: block;
  width: 200px;
  height: 200px;
}

