.ferramentaPomo__settings {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  top: 0;
  width: 100%;
  display: none;
}

.ferramentaPomo__settings--content {
  background-color: white;
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
  padding: 1rem 2.5rem;
}

.settings__close {
  position:absolute;
  top: 0;
  right: 10px;
  font-size: 35px;
  transform: rotate(45deg);
  cursor: pointer;
}

.settings__titulo--container {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.settings__titulo {
  font-size: 1.5rem;
}

.settings__title--logo {
  height: 3vh;
  margin-right: 0.3rem;
}

.settings__form{
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.settings__input--container {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0.5rem 0;
}

.settings__input--text{
  box-sizing: border-box;
  width: 6rem;
  text-align: left;
}

.settings__save {
  display: block;
  margin-top: 0.8rem;
  padding: 0.5rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ferramentaPomo__settings--content {
    /* padding: 1rem; */
    width: 95vw;
  }
  .settings__form{
    width: 16rem;
  }
  .settings__input {
    width: 1.5rem;
    margin: 0 0.7rem;
  }
}

@media screen and (min-width: 768px) {
  .settings__input {
    width: 2rem;
    margin: 0 0.5rem;
  }
}

