* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  padding-top: 97px;
  padding-bottom: 80px;
  padding-left: 0px;
  padding-right: 0px;
  background-color: rgb(245, 245, 245);
  /* background-image: linear-gradient(white, rgb(240, 240, 240)); */
}

button {
  -webkit-tap-highlight-color: transparent;
}

div {
  font-family: Arial;
}

.header {
  display: flex;
  /*background-color: rgb(239, 239, 239);*/
  background-color: rgb(180, 0, 0);
  height: 65px;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /*
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(180, 0, 0, 0.3);
*/
}

@keyframes shake {
  0% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(5px)
  }

  50% {
    transform: translateX(-5px)
  }

  75% {
    transform: translateX(5px)
  }

  100% {
    transform: translateX(0)
  }
}

@keyframes colorEff {
  0% {
    color: rgb(0, 0, 0);
  }

  100% {
    color: rgb(255, 0, 0);
  }
}

@keyframes opacEff {
  0% {
    opacity: 0;
  }

  /*
  25% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.5;
  }
*/
  100% {
    opacity: 1;
  }
}

.btn-left {
  background-color: transparent;
  height: 30px;
  width: 30px;
  /* border: 1px solid gray; */
  border: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 10px;
  left: 2px;
  cursor: pointer;
  z-index: 200;
}

.header-menu {
  height: 30px;
  background-color: lightyellow;
  position: fixed;
  top: 65px;
  left: 0px;
  right: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgb(74, 74, 74);
  border-bottom: 2px solid rgb(180, 0, 0);
  padding: 0px 15px;
  z-index: 100;
}

.header-menu-cd,
.header-menu-live {
  display: flex;
  align-items: center;
}

.header-menu-live {
  margin-left: auto;
}

.header-menu-btn-cd {
  border: none;
  background-color: transparent;
  font-size: 14px;
  color: rgb(74, 74, 74);
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.header-menu-btn-live {
  border: none;
  background-color: transparent;
  font-size: 14px;
  color: rgb(74, 74, 74);
  cursor: pointer;
  margin: 0;
  padding: 0;
  /* Vid LIVE! 
  animation: colorEff 1s 3, shake 0.35s 5; */
}

.hmc-icon,
.hml-icon {
  display: flex;
  align-items: center;
}

.hmc-text,
.hml-text {
  margin-left: 5px;
}

.timer-icon,
.bell-icon {
  width: 16px;
}

.cd-unit {
  color: rgb(150, 150, 150);
  font-size: 12px;
}

.cd-text {
  background-color: lightyellow;
  border: 1px solid rgb(180, 0, 0);
  border-radius: 8px;
  position: fixed;
  top: 90px;
  left: 35px;
  z-index: 200;
  padding: 3px 5px;
  opacity: 0;
}

.changeOpacity {
  animation: opacEff 5s;
}

.site-title {
  font-family: Arial;
  font-size: 40px;
  font-weight: 400;
  color: white;
}

.main {
  background-color: white;
  display: flex;
  flex-direction: column;
  width: calc(100dvw - 20px);
  height: calc(100dvh - 150px);
  margin: 10px auto 0px auto;
  /*margin: 10px auto 0 auto; */
  position: relative;
}

.main-index {
  padding-bottom: 5px;
}



a {
  color: black;
  text-decoration: none;
}

a img {
  display: block;
}

@media (min-width: 700px) {
  .main {
    height: initial;
    padding-bottom: 80px;
  }
}