:root{
  --base-font-color: #3E3F42;
}

html,body{
  font-size: 13px !important;
  height: 100% !important;
  font-weight: 400;
  line-height: 25px !important;
  color: var(--base-font-color);
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.wrapper {
  display: flex;
  align-items: stretch;
}

.content{
  width: 100%;
  margin-left: 1.5rem;
  padding: 2rem;
  padding-bottom: 0 !important;
  min-height: calc(100vh - 50px);
  overflow-y: hidden !important;
}

.content-full {
  width: 100%;
  right: 10px;
  left: 10px;
  min-height: calc(100vh - 50px);
}

.page-header{
  font-size: 2rem;
  font-weight: 400;
}

footer{
  background: #FFF;
  border-top: 0.5px solid #EAE9F7;
}

.entry_logo{
  height: 40px;
}

.profile-image-large{
  height: 80px;
}

.error-invalid-page{
  position: relative;
  top: 30%;
}

.vue-notification-group{
  margin-top: 5rem !important;
  z-index: 50001 !important;
}

.vue-notification-template {
  background: #E5EFF5 !important;
}

.n-light {
  margin: 10px;
  margin-bottom: 0;
  border-radius: 0.5rem;
  font-size: 12px;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
}

.n-light > .notification-title {
  font-size: 14px;
  font-weight: 600;
}

.company-logo-image{
  height: 35px;
}

.filter-card{
  border-radius: 2px !important;
}

.notification-profile{
  height: 40px;
}

hr{
  margin-left: -30px;
  margin-right: -30px;
  border-top: 0.5px solid rgba(0,0,0,.1);
}

.cursor{
  cursor: pointer !important;
}

.timer-circle{
  border: 1px solid #eee;
  padding: 3px;
  border-radius: 10px;
}

.notification-unread{
  background-color: #007eff14;
}

.custom-border-light{
  border: 0.5px solid var(--border-color);
}

.app-indicator{
  font-size: 14px;
}

.pre-loader{
  display: flex;
  height: 100dvh;
  justify-content: center;
  top: 0;
  align-items: center;
}

/* courtesy to https://uiball.com */
.race-by {
  --uib-size: 50px;
  --uib-speed: 1.4s;
  --uib-color: var(--nav-background);
  --uib-line-weight: 5px;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--uib-line-weight);
  width: var(--uib-size);
  border-radius: calc(var(--uib-line-weight) / 2);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.race-by::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--uib-color);
  opacity: 0.1;
}

.race-by::after {
  content: '';
  height: 100%;
  width: 100%;
  border-radius: calc(var(--uib-line-weight) / 2);
  animation: raceBy var(--uib-speed) ease-in-out infinite;
  transform: translateX(-100%);
  background-color: var(--uib-color);
}

@keyframes raceBy {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
