.w3-content{
    margin-left: auto;
    margin-right: auto;
}

.w3-content {
    max-width: 100%;
}

.w3-display-container {
  position: relative
}


.w3-center {
  text-align: center !important
}

.w3-display-bottommiddle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%)
}

.w3-left {
  float: left !important
}

.w3-right {
  float: right !important
}

.w3-badge {
  border-radius: 50%
}

.w3-border {
  border: 1px solid #ccc !important
}

.w3-hover-text-khaki:hover {
  color: #b4aa50 !important
}

.w3-transparent{
    background-color: transparent !important
}

.w3-hover-white:hover {
  color: #000 !important;
  background-color: #fff !important
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 4px;
}




/* Fading animation */
.fade {
  animation: fading 5s infinite;
}

@keyframes fading {
  0% {
    opacity: 0
  }

  15% {
    opacity: 1
  }

  85% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}