.pomotimer {
  background: var(--bgrtool2);
  padding-top: 0.5rem;
}

.pomotimer__butttimer {
  color: black;
  background: var(--bgrtool3);
  border: none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  height: 1.5rem;
  margin-right: 0.5rem;
  padding: 0.3rem 0rem;
  width: 5.3rem;
}
.pomotimer__butttimer:hover {
  cursor: pointer;
}
.pomotimer__butttimer.active {
  background: var(--bgrtool4);
  font-weight: bold;
}

.pomotimer__timer {
  align-items: center;
  background: var(--bgrtool3);
  border-radius: 50%;
  color: var(--textcolortimer);
  display: flex;
  font-size: 6rem;
  height: 16rem;
  justify-content: center;
  margin: 1.5rem auto;
  text-align: center;
  width: 16rem;
  flex-shrink: 0;
}

.pomotimer__canvas {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  position: absolute;
}

.pomotimer__timer--text {
  position: absolute;
}

.pomotimer__controls--container{
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  align-items: center;
  background: var(--bgrtool3);
  display: flex;
  justify-content: space-between;
  height: 2rem;
  width: 100%;
}
.pomotimer__controls {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: 0.5rem;
}

.pomotimer__control {
  align-items: center;
  display: flex;
  margin-right: 0.5rem;
  width: 4rem;
}
.pomotimer__control:hover {
  cursor: pointer;
}
.pomotimer__control--pause{
  display: none;
}

.pomotimer__control--button {
  border: none;
  background: no-repeat center / cover;
  border-radius: 100%;
  box-sizing: border-box;
  display: inline;
  height: 1.3rem;
  margin-right: 0.3rem;
  width: 1.3rem;
}
.pomotimer__control--button:hover {
  cursor: pointer;
}

.pomotimer__control--startbutton {
  background-image: url('../imgs/play.svg');
}
.pomotimer__control--pausebutton {
  background-image: url('../imgs/pause.svg');
}
.pomotimer__control--stopbutton {
  background-image: url('../imgs/stop.svg');
}

.pomotimer__control--text {
  color: var(--textcolortool4);
}

.pomotimer__control--count {
  color: var(--textcolortool4);
  border-radius: 0.5rem;
  box-sizing: border-box;
  height: 2rem;
  padding: 0.5rem;
}

/* @media screen and (min-width: 650px) and (max-height: 550px) {
  .pomotimer__timer {
    font-size: 3rem;
    height: 8rem;
    width: 8rem;
    margin: 0.5rem auto;
  }
  .pomotimer__canvas {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    position: absolute;
  }
}  */