@tailwind base;
@tailwind components;
@tailwind utilities;

/* font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* common */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input {
  background-color: #eeeeee;
}

/* main.html */
.form__row--hidden {
  display: none;
}
.workout--cycling {
  border-left: 4px solid #ff7043;
}
.workout--running {
  border-left: 4px solid #00e676;
}

/* hidden */
.hidden {
  display: none;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #b7d6ff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1c75bc;
  border-radius: 40px;
  height: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #1c75bc;
}

@media (min-width: 1440px) {
  footer {
    grid-area: 4 / 1 / 5 / 5;
  }
}
