/*
Theme Name: InspireWith
Theme URI: http://inspirewith.io
Description: InspireWith podcast web app
Version: 1.0
Author: InspireWith
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #A6AFD8;
}

#iw-root { width: 100%; height: 100vh; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(90,103,230,.25); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(90,103,230,.4); }

/* Equalizer animation */
@keyframes iw-eq {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* Hover transitions */
[data-open]:hover,
[data-play]:hover { transform: translateY(-2px) !important; }

button { font-family: 'Nunito Sans', sans-serif; }
