* {
  box-sizing: border-box;
  font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.nav {
  width: 100%;
  height: 90px;
  background-color: rgb(117,200,0);
}

.nav button {
  color: white;
}

/* CSS for the buttons */
.btn-group {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.btn-group button {
  background-color: transparent;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  flex: 1;
  max-height: 80px;
}

.btn-group button:hover {
  background-color: #85D900;
}

.btn-group button.btn-active {
  background-color: #85D900;
}

.btn-group img {
  height: 36px;
  width: 36px;
}

/* CSS for the content */
.content {
  flex: 1;
  overflow: scroll;
  text-align: center;
  background: linear-gradient(0deg, #f0f0f0, #ffffff);
}

/* CSS for mobile devices */
@media screen and (max-width: 480px) {
  .btn-group {
    padding: 5px 0;
  }
}

.progress {
  display: block;
  width: 224px;
  margin: auto;
  margin-top: 68px;
}

.progress__meter{
  fill: none;
}

.progress__meter {
  stroke: #f0f0f0;
}

.step__container {
  position: relative;
  top: -144px;
}

.step__number {
  color: transparent;
  font-size: 24pt;
}

.step__text {
  color: rgb(119,119,119);
  font-size: 16pt;
}

.step__slinko > img {
  width: 100%;
}

.leagues__flexbox {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.leagues__header {
  background-color: #3e7cb5;
  height: 220px;
  text-align: center;
  width: 100%;
}

.leagues__header img {
  width: 393px;
  height: 220px;
}

.leagues__list {
  flex: 1;
  overflow: scroll;
  width: 100%;
}

.leagues__list table {
  border-collapse: collapse;
  font-size: 14pt;
  width: 100%;
}

.leagues__list table td {
  padding: 10px 5px;
}


.leagues__list table tr.currentUser {
  background-color: #ddd;
}

.leagues__list table .avatar img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.leagues__list table tr {
  height: 58.010px;
}

.leagues__list table .username {
  text-align: left;
}

.leagues__list table .sp {
  text-align: right;
}

.video__container {
}
.video__header {
  padding-top: 40px;
  color: #747474;
}

.hidden {
  display: none;
}

#homeImage {
  width: 100%;
}

#challenge {
  position: fixed;
  height: 300px;
  width: 300px;
  background-color:white;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 3px 3px 3px lightgray;
}
#challenge img {
  width: 150px;
}

.notification {
  height: 100px;
  width: 100%;

  position: absolute;

  background-color: white;
  border-bottom: 1px solid black;

  display: flex;
  top: -100px;

  transition: all 0.5s ease-out;
}

.notification__shown {
  top: 0px!important;
}

.notification img {
  height: 100px;
}
.notification > div {
  display: flex;
}

