/*
  Font family is Nunito Sans. Its fallback is Helvetica
*/
/*
  Font sizes have been converted to rem considering a base size of 16px.
*/
/*
*  Z-Index
*  
*  The z-index CSS property sets the z-order of a positioned element and its descendants or flex items. 
*  Overlapping elements with a larger z-index cover those with a smaller one.
*  
*  REF: https://developer.mozilla.org/en-US/docs/Web/CSS/z-index
*  REF: https://www.smashingmagazine.com/2019/04/z-index-component-based-web-application/  
*/
/**
 * Define media query values
 */
/** Customs */
/** Animations */
/** Aligns */
/** Scoll Bar */
/** Hover & Pressed */
:host {
  display: block;
}

.loading_bar {
  box-sizing: border-box;
  position: relative;
  border-radius: 32px;
  border: 1px solid var(--color-content-disable, #595959);
  margin-bottom: 8px;
}
.loading_bar.size_small {
  height: 8px;
}
.loading_bar.size_small .bar_behind .loading {
  border-radius: 1px;
}
.loading_bar.size_default {
  height: 16px;
}
.loading_bar.size_default .bar_behind .loading {
  border-radius: 2px;
}
.loading_bar .bar_behind {
  position: absolute;
  inset: 0.5px 1px 1px 0.5px;
  border-radius: 16px;
  overflow: hidden;
}
.loading_bar .bar_behind .loading {
  position: absolute;
  height: 100%;
  background-color: var(--color-extended-blue, #1968f0);
  transition: all 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  overflow: hidden;
}
.loading_bar .bar_behind .loading .loader {
  position: absolute;
  left: -16px;
  width: calc(100% + 16px);
  height: 100%;
  background: white;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, rgba(0, 0, 0, 0.26) 75%);
  background-size: 4px;
  transform: skewX(-15deg);
  animation-name: load;
  animation-timing-function: linear;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}

.typo_loading {
  padding-left: 8px;
  padding-right: 8px;
  color: var(--color-content-default, #282828);
}

@keyframes load {
  from {
    left: -16px;
  }
  to {
    left: 0;
  }
}