@import url("table.css");
:root {
  --font-family1: "arboria", sans-serif;
  --purple-light: #b825f0;
  --purple-dark: #301241;
  --blue-dark: rgba(17, 14, 37, 1);
}

.purple-gradient-text {
  background-image: linear-gradient(225deg, #b825f0 -14.37%, #301241 134.38%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header {
  text-align: center;
  font-size: 3.3rem;
  /* font-style: italic; */
  font-weight: 900;
  line-height: normal;
}

* {
  box-sizing: border-box;
}

html {
  /* font-family: "TitilliumWeb-Regular", Arial, Helvetica, sans-serif; */
  font-family: var(--font-family1);
  font-size: 62.5%;
  font-size: 10px;
  color: rgba(17, 14, 37, 1);
}
body,
html {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

#app {
  margin: 0 8px;
}

#event-list-template {
  position: relative;
  width: 100%;
  min-height: 200px;
}

.show {
  display: block !important;
}

/* loading styles */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255, 0.8);
  z-index: 1000;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--purple-light);
  border-radius: 50%;
  float: left;
  margin: 0 5px;
  transform: scale(0);
  animation: fx ease infinite 1000ms 0ms;
}

.dot:nth-child(2) {
  animation: fx ease infinite 1000ms 300ms;
}
.dot:nth-child(3) {
  animation: fx ease infinite 1000ms 600ms;
}

@keyframes fx {
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.full-height-area {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

.powered-by-outshine {
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
}

.powered-by-outshine p {
  font-size: 1.4rem;
  margin: 10px 0;
}

.powered-by-outshine a img {
  width: 150px;
}


/* month-buttons-wrapper */
.month-buttons-wrapper {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 12px;

} 
.month-buttons-wrapper .month-buttons button {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.10);
  border: none;
  padding: 7px 12px;
  margin: 0 5px;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s;
}

.month-buttons-wrapper .month-buttons button.active {
  background: linear-gradient(225deg, #B825F0 -14.37%, #301241 134.38%);
  color: #fff;
}