@charset 'UTF-8';

/*******************************************************************************/
/*******************************************************************************/
/*******************************************************************************/

/* 
    Note:   When new colors have been added, you can directly copy 
            paste into the ~/libraries/assets folder.
*/

/*******************************************************************************/
/*******************************************************************************/
/*******************************************************************************/

/* IMPORTED STYLES */

@import url("./styles.css");
@import url("./timer-counter.css");

/*******************************************************************************/
/*******************************************************************************/
/*******************************************************************************/

/* COLORS */
/* 
    PC = Main Color
    SC = Secondary Color
    HC = Highlight Color
    FC = Footer Color
    BC = Background Color
    
    FPC = Font Color on Main Color
    FSC = Font Color on Secondary Color
    FHC = Font Color on Highlight Color
    FFC = Font Color on Footer Color
    FBC = Font Color on Background Color
*/

:root {
  --MC: #3f91c5;
  --FMC: #ffffff;

  --SC: #6bab38;
  --FSC: #ffffff;

  --HC: #f44336;
  --FHC: #ffffff;

  --FC: #6bab38;
  --FFC: #ffffff;

  --BC: #ffffff;
  --FBC: #000000;
}

/*******************************************************************************/
/*******************************************************************************/
/*******************************************************************************/

/* PRELOADERS */

#vue_app {
  opacity: 0;
  transition: opacity 0.5s linear;
}

#afs-preloader {
  pointer-events: none;
  display: block;
  box-sizing: border-box;
  width: 7rem;
  height: 7rem;
  border: 0.75rem solid #f8f8f8;
  border-top: 0.75rem solid #09f;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999999999999999999999999999;
  opacity: 1;
  transition: opacity 0.5s linear;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*******************************************************************************/
/*******************************************************************************/
/*******************************************************************************/

/* ADDITIONAL STYLES */

body {
  background: var(--BC);
  color: var(--FBC);
}

body > img {
  position: absolute;
}

.psgTimer_labels > div,
.ascendfs-count-down .label {
  color: var(--FBC);
}

.ascendfs-count-down .count {
  background: var(--SC);
  color: var(--FSC) !important;
  text-shadow: none !important;
}

/*******************************************************************************/
/*******************************************************************************/
/*******************************************************************************/

/* CUSTOM STYLES */

@media screen and (max-width: 35rem) {
  .table-wrapper {
    overflow-x: scroll;
  }
}
table {
  width: 100%;
  min-width: 30rem;
  margin: 1rem 0;
  position: static;
}
table,
table * {
  border-collapse: collapse;
}
table * {
  text-align: center;
}
table th {
  font-weight: 700;
}
table th,
table td {
  align-items: center;
  border: #fff solid 0.1rem;
}

/*******************************************************************************/
/*******************************************************************************/
/*******************************************************************************/
