:root{
  --orange-color: #F55A00;
  --orange-background: rgba(245, 90, 0, .6);
  --dark-grey: #2d2d2d;
}

html {
  scroll-behavior: smooth;
}

.background-main-page{
  background-image: url(../images/mainbackground.png);
  background-position: center;
  background-size:cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  max-width: 100%;
  height: 150vh;
}

.error-overlay {
  color: var(--dark-grey);
  height: inherit;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);  
}

.overlay {
  color: var(--dark-grey);
  height: inherit;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
}

h2 {
  font-weight: normal;
}

.overlay p {
  color: var(--dark-grey);
}

.overlay i {
  color: var(--dark-grey);
}

.flex-wrap {
  flex-wrap: wrap;
}

.space-around {
  justify-content: space-around;
}

.overlay::before {
  content: "DONE!";
  color: var(--orange-color);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 2rem;
  top: 2rem;
}

.select-workout {
  color: var(--orange-color);
  width: 375px;
  height: 812px;
}

.select-workout .row {
  padding-top: 1rem;
}

.header {
  padding: 1rem;
  text-align: center;
}

.no-margin {
  margin: 0;
}

.m-1 {
  margin-right: 1rem;
}

.space-between{
  justify-content: space-between;
  align-items: center;
}

.auto-margin {
  margin: auto;
}

.orange-text {
  color: var(--orange-color);
}

li {
  max-width: 800px;
  border: 2px solid var(--orange-color);
  margin: 1rem 0;
  list-style-type: none;
  background-color: var(--dark-grey);
  border-radius: 20px;
  padding: .5rem;

}

.no-padding {
  padding: 0;
}

.small {
  font-size: smaller;
}

.fas::before {
  cursor: pointer;
  margin-left: 1rem;
}

.fa-minus-circle::before {
  cursor: pointer;
  font-size: smaller;
}

.fa-check::before {
  cursor: pointer;
  margin-left: 1rem;
  font-size: smaller;
}

.fa-plus {
  cursor: pointer;
}

.flex-column {
  flex-direction: column;
}

.column-80 {
  flex-basis: 80%;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.tag {
  width: 125px;
  height: 51px;
  background-color: var(--orange-background);
  color: white;
  border-radius: 6px;
  border: none;
  margin: .5rem;
  cursor: pointer;
  text-align: center;
  padding-top: 1rem;
  text-decoration: none;
}

.tag:hover {
  background-color: var(--orange-color);
}

.line-break div {
  height: 1px;
  width: 100px;
  background-color: rgba(196, 196, 196, .55);
  margin: 0 1.5rem;
}

.line-break {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

}

.line-break p {
  color: white;
}

.tag-buttons {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.select-tag{
  background-color: #010101;
  color: var(--orange-color);
  max-width: 100%;
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
}

.column-80{
  flex-basis: 90%;
}

.column-20 {
  flex-basis: 20%;
}
