p {
  margin: 0;
  padding: 0;
}
.body {
  background: rgb(218, 218, 233);
  height: 100vh;
  position: relative;
}
.wrapper {
  background: rgb(231, 228, 228);
  width: 90%;
  height: 90%;
  border: 4px solid blanchedalmond;
  border-style: outset;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.header {
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}
.wrapper-time, .wrapper-flag, .wrapper-count {
  height: 70%;
  border: 4px solid blanchedalmond;
  border-style: outset;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(44, 43, 43);
  color: red;
}

.time {
  width: 10%;
  min-width: 70px;
  /* height: 70%; */
  background: rgb(44, 43, 43);
  font-size: 30px;
  font-weight: 900;
  color: red;
  font-family: 'Quartz', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
}



.play {
  width: 10%;
  min-width: 70px;
  height: 80%;
  font-size: 12px;
  font-weight: 900;
  border: 4px solid blanchedalmond;
  border-style: outset;
}
.start {
  width: 10%;
  min-width: 70px;
  height: 80%;
  font-size: 12px;
  font-weight: 900;
  border: 4px solid blanchedalmond;
  border-style: outset;
  cursor: pointer;
}

.start.none {
  cursor: pointer;
}

.result {
  position: absolute;
  top: 0;
  left:50%;
  transform:translate(-50%, 0%);
  width: 300px;
  font-size: 20px;
  font-weight: 900;
  border: 4px solid blanchedalmond;
  border-style: outset;
  background: white;
  padding: 10px;
  display: none;
}

.list__result {
  position: absolute;
  top: 50%;
  left:50%;
  transform:translate(-50%, -50%);
  right: 100px;
  top: 300px;
  width: 400px;
  height: 400px;
  background: white;
  display: none;
  padding: 10px;
  border: 2px black;
}

.list__result.block{
  display: block;
}

.count-bombs {
  width: 5%;
  min-width: 50px;
  height: 40%;
  font-size: 20px;
  font-weight: 900;
  border: 4px solid blanchedalmond;
  border-style: outset;
  background: white;
  margin-right: 20px;
  cursor: pointer;
  text-align: center;
  padding-top: 5px;
}
.mute {
  width: 3%;
  min-width: 30px;
  height: 40%;
  font-size: 20px;
  font-weight: 900;
  border: 4px solid blanchedalmond;
  border-style: outset;
  background: white;
  margin-right: 20px;
  cursor: pointer;
  text-align: center;
  padding-top: 5px;
  background: url(./assets/png/icons8-микрофон-48.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  text-align: center;
}
.mute.pause {
  background: url(./assets/png/icons8-выключить-микрофон-48.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  text-align: center;
}

.setting {
  display: flex;
  align-items: center;
  justify-content:flex-start;
  /* width: 90%; */
  height: 90%;
}

.count {
  width: 5%;
  min-width: 35px;
  height: 70%;
  background: rgb(44, 43, 43);
  font-size: 30px;
  color: red;
  font-family: 'Quartz', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
}

input {
  margin-right: 20px;
}
.main {
  position: relative;
  height: 80%;
  border: 4px solid blanchedalmond;
  border-style: outset;
  display: flex;
}

.field {
  width: 300px;
  height: 300px;
  display: grid;
  grid-template-columns: repeat(10, 30px);
  margin: 100px auto;
}

.button {
  height: 30px;
  width: 30px;
  font-size: 16px;
  color :black;
  /* border: 4px solid blanchedalmond; */
  /* border: 1px solid rgb(179, 179, 176); */
  /* border-style: outset; */
  font-weight: 900;
}
.blue {
  color :blue;
}
.green {
  color : green;
}
.red {
  color :red;
}
.blueviolet {
  color :blueviolet;
}
.brown {
  color :brown;
}
.active {
  background: rgb(214, 209, 209);
}

.swich {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 34px;
}

.swich__input {
  height: 0;
  width: 0;
  opacity: 0;
}

.swich__check {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  background: wheat;
  border-radius: 34px;
  transition: .6s;
}

.swich__check::before {
  content: '';
  position: absolute;
  left: 4px;
  bottom: 4px;
  cursor: pointer;
  height: 26px;
  width: 26px;
  background: gray;
  border-radius: 50%;
  transition: .6s;

}
.swich__input:checked + .swich__check {
  background: gray;

}

.swich__input:checked + .swich__check::before {
  transform: translateX(26px);
  background: wheat;
}

.darck {
  background: rgb(54, 54, 54)
}

.light {
  background: wheat;
}

.footer {
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.setting.block {
  display: block;
}
.setting__btn {
  width: 5%;
  min-width: 50px;
  height: 70%;
  font-size: 10px;
  font-weight: 900;
  border: 4px solid blanchedalmond;
  border-style: outset;
  background: white;
  margin-right: 20px;
  cursor: pointer;
  background: url(./assets/png/setting.png);
  background-repeat: no-repeat;
  display: none;
}

@media(max-width:821px) {
  .setting {
    display: none;
    position: absolute;
    bottom: 130px;
    left: 60px;
    width: 400px;
    height: 100px;
  }
  .setting__btn {
    display: block;
  }
}
