/*!
 * Copyright 2023 (c) Neo-OOH - All Rights Reserved
 * Unauthorized copying of this file, via any medium is strictly prohibited
 * Proprietary and confidential
 * Written by Valentin Dufois <vdufois@neo-ooh.com>
 *
 * @neo/connect - ProgressBar.scss
 */
@keyframes progressBarIndeterminate{0%{left:-30%}to{left:100%}}.progress-bar{flex-flow:row;align-items:center;width:100%;display:flex}.progress-bar__background{background-color:var(--ultralight-grey);border-radius:5px;width:100%;height:5px;position:relative;overflow:hidden}.progress-bar__background.invert{background-color:var(--dark-blue)}.progress-bar__buffer-value{background-color:var(--light-grey);border-radius:5px;height:100%;transition-property:width;transition-duration:.25s}.progress-bar__buffer-value+.progress-bar__value{margin-top:-5px}.progress-bar__value{background-color:var(--dark-blue);border-radius:5px;height:100%;transition-property:width;transition-duration:.25s}.progress-bar__label{text-align:right;min-width:4ch;color:var(--dark-grey);flex-shrink:0;margin-left:5px;font-size:.889rem}.progress-bar__indeterminate{background-color:var(--ultralight-grey);border-radius:5px;width:30%;height:100%;animation:1.5s ease-in-out infinite progressBarIndeterminate;position:absolute;top:0;left:-30%}
