/* width */
::-webkit-scrollbar {
  width: 1vw;
  height: 1vw;
}

.main_container {
  position: relative;
  max-width: 1000px;
  width: 48vh;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 32px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .main_container {
    font-size: 3.2vw;
  }
}

.excercise_container_cap {
  background-color: rgb(128,128,128);
  height: 4vh;
  line-height: 4vh;
  font-size: 2vh;
  padding-left: 2vh;
  padding-right: 2vh;
  color: rgb(255,255,255);
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.excercises_stats_container {
  height: 26vh;
  overflow: auto;
  white-space: nowrap;
  font-size: 0px;
}
.excercise_stats_item {
  float: left;
  position: relative;
  height: calc(24.75vw - 1px);
  width: calc(24.75vw - 1px);
  border-bottom: 1px solid rgb(225,225,225);
  border-right: 1px solid rgb(225,225,225);
  background-color: rgb(255,255,255);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: right 0px;
  cursor: pointer;
}
.excercise_stats_item .count {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 50%;
  width: 50%;
  text-align: center;
  line-height: 12.375vw;
  font-size: 4.8vw;
  font-weight: bold;
}
.excercise_stats_item .count_sub {
  position: absolute;
  left: 0px;
  top: 33%;
  height: 17%;
  width: 50%;
  text-align: center;
  font-size: 2.0vw;
  font-weight: bold;
}
.excercise_stats_item .name {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 50%;
  width: 100%;
  text-align: center;
  font-size: 3.2vw;
  text-wrap: wrap;
}

.excercises_log_container {
  height: 58vh;
  overflow: auto;
  white-space: nowrap;
  font-size: 0px;
}
.excercise_log_item {
  float: left;
  position: relative;
  height: calc(24.75vw - 1px);
  width: calc(24.75vw - 1px);
  border-bottom: 1px solid rgb(225,225,225);
  border-right: 1px solid rgb(225,225,225);
  background-color: rgb(255,255,255);
  background-size: 64%;
  background-repeat: no-repeat;
  background-position: 50% 0px;
  cursor: pointer;
}
.excercise_log_item .name {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 40%;
  width: 100%;
  text-align: center;
  font-size: 3.2vw;
  text-wrap: wrap;
}

.excercise_menu {
  position: fixed;
  background-color: rgb(0,0,0);
  height: 8vh;
  line-height: 8vh;
  bottom: 0vh;
  width: 100%;
}
.excercise_menu .logo {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 8vh;
  width: 8vh;
  background-image: url(../images/fitness.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50%;
}
.excercise_menu .useravatar {
  position: absolute;
  right: 2vh;
  top: 2vh;
  height: 4vh;
  width: 4vh;
  border-radius: 2vh;
  background-image: url(../images/fitness.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}
.excercise_menu_nav {
  position: fixed;
  line-height: 6vh;
  font-size: 1.5vh;
  bottom: calc(8vh + 1px);
  width: 100%;
}
.excercise_menu_nav div {
  color: #FFFFFF;
  font-weight: bold;
  padding-left: 2vh;
  padding-right: 2vh;
  text-align: right;
  cursor: pointer;
  background-color: rgba(0,0,0, 1.0);
  -moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}
.excercise_menu_nav div:hover {
  color: #DD0000;
  background-color: rgba(0,0,0, 0.8);
}
