.button-root{cursor:pointer;transition:background-color .4s cubic-bezier(.075,.82,.165,1)}.button-base{display:flex;flex-direction:row;align-items:center;justify-content:center;background-color:var(--primary-color-2-inactive);color:var(--text-secondary);width:100%;padding:1rem .5rem;border:none;border-radius:8px;font-size:1.2rem;transition:background-color .2s,color .2s,box-shadow .2s}.button-base:focus,.button-base:hover{background-color:var(--primary-color-2-active);color:var(--text-active);box-shadow:0 0 8px 1px var(--primary-color-2-active);border:none;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.button-custom{background-color:transparent;border:none}.button-spinner{display:inline-block;animation:spin 2s linear infinite;width:18px;height:18px}@keyframes spin{to{transform:rotate(1turn)}}svg circle{fill:none;stroke:#edf7ff;stroke-width:10;stroke-dasharray:.25 .75;stroke-linecap:round;stroke-dashoffset:1;animation:dash-trail 1.5s ease-in-out infinite}@keyframes dash-trail{0%{stroke-dashoffset:0}to{stroke-dashoffset:-1}}