/* 
 * DO NOT EDIT THIS FILE.
 * The Airbus Web Experience use PostCSS to compile CSS
 * the same way as in the Drupal core except it use the .pcss extension.
 * Therefore, you are supposed to edit the pcss file of the same name.
 */

.awx-button.awx-scroll-button{
  --button-size:var(--awx-sp-v3);

  width:var(--button-size);
  height:var(--button-size);
  margin:0;
  padding:0;
  text-align:center;
  border-radius:50%;
  font-size:1.25em;
  line-height:var(--button-size);
}

.awx-button.awx-scroll-button svg{
    animation:bounce-down 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }

.awx-button.awx-scroll-button::after,.awx-button.awx-scroll-button::before{
    border-radius:50%;
  }

.awx-scroll-button--up svg,.awx-scroll-button--top svg{
    animation-name:bounce-up;
  }


