/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

html, p {
  margin: 0;
  font-size: 40px;  
}

body {
  margin: 0;
  font-family: Exo, sans-serif;
  font-display: swap;
  background-color: #FCFCFC;
}

p.subtitle {
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Londrina Solid', cursive;
  font-weight: 300;
  margin: 0;
}

h1 {
  font-weight: 400;
  font-size: 120px;
}

h2 {
  font-weight: 400;
  font-size: 80px;
  text-align: center;
}

h3 {
  font-size: 60px;
}
 
header {
  background-color: #00CCFF;
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}

footer {
  position: fixed;
  z-index: 99;
  background-color: #00CCFF;
  width: 100%;
  bottom: 0;
}

footer a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #000;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 240px 5% 60px;
}

main > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1em;
}

a.day-container {
  text-decoration:none;
  color: inherit;
  display: flex;
  width: 100%;
}

article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(155,226,244,1) 85%, rgba(112,220,247,1) 100%);
  box-shadow: 0.2em 0.2em 0.2em rgba(0,0,0,0.3);
  border-radius: 1em;
  border: 2px #001166 solid;
  margin-bottom: 1em;
  padding: 1em;
  width: 100%;
  box-sizing: border-box;
}

article.meta {
  background: linear-gradient(180deg, rgba(85,85,85,1) 0%, rgba(32,32,32,1) 85%, rgba(0,0,0,1) 100%);
  border-color: #000000;
  color: #eeeeee;
  flex-direction: column;
}

article.day.In-Progress {
  background: linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(209,175,17,1) 85%, rgba(172,124,0,1) 100%);
  border-color: #442200;
}

article.day.Complete, article.exercise.Complete {
  background: linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(204,204,204,1) 85%, rgba(168,168,168,1) 100%);
  border-color: #333333;
}

article.meta.Complete {
  filter: grayscale(100);
}

article.meta.Complete a.button {
  pointer-events: none;
}

article.exercise.Complete a.button {
  display: none;
}

.exercise-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.day-wrapper, .exercise-wrapper {
  margin-right: 1em;
  flex-grow: 1;
}

div.day {
  margin-top: 0.3em;
}

.day.details {
  width: 100%;
  font-size: 
}

.day.details span {
  padding-right: 0.5em;
  margin-right: 0.5em;
  border-right: 2px #333333 solid;
}

.day.details span:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.exercise-details div {
  padding-top: 0.3em;
}

a.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1em;
  padding: 0 1em;
  background: linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(17,209,84,1) 80%, rgba(1,162,12,1) 100%);
  text-align: center;
  height: 100px;
  border: 2px #006107 solid;
  text-decoration: none;
  color: #000000;
}

a.button:hover {
  background: linear-gradient(180deg, rgba(17,209,84,1) 0%, rgba(1,162,12,1) 50%);
}

form {
  width: 100%;
}

input, select {
  font-family: Exo, sans-serif;
  font-size: 1.4rem;
  border-radius: 1em;
  padding: 0.2em 0.8em;
  margin: 0.1em;
  transition: all 0.3s ease;
}

div.exercise-update {
  display: flex;
  flex-direction: column;
  align-items: center;
}

div.weight {
  display: flex;
  flex-direction: row;
  align-items: center;
}

span.weightunit {
  position: relative;
  left: -2em;
  margin-right: -1em;
  pointer-events: none;
  color: #333;
}

.weight input {
  width: 3em;
  text-align: right;
  padding-right: 1.5em;
}

.meta .weight input {
  width: 3em;
}

option { 
  font-size: 1rem;
  padding: 0;
  margin: 0;
}

article.meta div.weight {
  margin: 1em 0;
}

article.meta h2 {
  font-size: 120px;
}

#toast-container {
  position: fixed;
  bottom: 0;
  height: 200px;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

#toast {
  background: rgba(33,33,33,0.8);
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
  transform: translateY(200px);
  opacity: 0;
  color: #fff;
  z-index: 90;
}

#toast.show {
  transform: translateY(0);
  opacity: 100;
}