.panel,
.panel-body {
  /*font-family: 'Arizonia';*/
  font-size: 24px;
  color: #6e6e6e;
  text-align: center;
  border-radius: 7px 7px 7px 7px;
  -moz-border-radius: 7px 7px 7px 7px;
  -webkit-border-radius: 7px 7px 7px 7px;
  border: 0px solid #000000;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(197, 232, 211, 1);
  -moz-box-shadow: 0px 0px 10px 2px rgba(197, 232, 211, 1);
  box-shadow: 0px 0px 10px 2px rgba(197, 232, 211, 1);
}
.quote {
  cursor: pointer;
}
.quote:hover {
  background: #1867c0;
  color: white;
  transform: scale(1.1);
}
table.v-table tbody td:first-child,
table.v-table tbody td:not(:first-child),
table.v-table tbody th:first-child,
table.v-table tbody th:not(:first-child),
table.v-table thead td:first-child,
table.v-table thead td:not(:first-child),
table.v-table thead th:first-child,
table.v-table thead th:not(:first-child) {
  padding: 0 10px;
}

.container-s {
  height: 60px;
  width: 60px;
  margin: 200px auto;
  position: relative;
}
.item {
  position: absolute;
  border-radius: 50%;
  height: 20px;
  width: 20px;
}
.item:nth-child(1) {
  background-color: brown;
  top: 0;
  left: 0;
  animation: anima1 2s ease infinite;
}
.item:nth-child(2) {
  background-color: cornflowerblue;
  top: 0;
  right: 0;
  animation: anima2 2s ease infinite;
}
.item:nth-child(3) {
  background-color: darkolivegreen;
  bottom: 0;
  left: 0;
  animation: anima3 2s ease infinite;
}
.item:nth-child(4) {
  background-color: coral;
  bottom: 0;
  right: 0;
  animation: anima4 2s ease infinite;
}

@keyframes anima1 {
  0% {
    top: 0;
    left: 0;
  }
  25% {
    top: 0;
    left: calc(100% - 20px);
  }
  50% {
    top: calc(100% - 20px);
    left: calc(100% - 20px);
  }
  75% {
    top: calc(100% - 20px);
    left: 0;
  }
  100% {
    top: 0;
    left: 0;
  }
}
@keyframes anima2 {
  0% {
    top: 0;
    left: calc(100% - 20px);
  }
  25% {
    top: calc(100% - 20px);
    left: calc(100% - 20px);
  }
  50% {
    top: calc(100% - 20px);
    left: 0;
  }
  75% {
    top: 0;
    left: 0;
  }
  100% {
    top: 0;
    left: calc(100% - 20px);
  }
}
@keyframes anima3 {
  0% {
    top: calc(100% - 20px);
    left: calc(100% - 20px);
  }
  25% {
    top: calc(100% - 20px);
    left: 0;
  }
  50% {
    top: 0;
    left: 0;
  }
  75% {
    top: 0;
    left: calc(100% - 20px);
  }
  100% {
    top: calc(100% - 20px);
    left: calc(100% - 20px);
  }
}
@keyframes anima4 {
  0% {
    top: calc(100% - 20px);
    left: 0;
  }
  25% {
    top: 0;
    left: 0;
  }
  50% {
    top: 0;
    left: calc(100% - 20px);
  }
  75% {
    top: calc(100% - 20px);
    left: calc(100% - 20px);
  }
  100% {
    top: calc(100% - 20px);
    left: 0;
  }
}
