* {
  font-family: Lato, Helvetica, Arial, sans-serif
}

body {
  background-color: #EEE;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
}

.titlebar {
  background-color: #00AAAA;
}

.title, .subtitle {
  color: black;
  font-weight: 400;
}
.title {
  padding-top: 25px;
}

.niceinput {
  font-size: 20;
  padding: 5px;
  width: 90%;
  margin-top: 5px;
}
.titleimage {
  width: 50px;
  height: 50px;
  fill: blue;
}
.container {
  text-align: left;
  width: 100%;
  /* margin-left: 5vw; */
  color: #777;
}
.bgmsg {
  padding: 7px;
}

.setting {
  background-color: #FFF;
  padding: 10px;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #333;
}

.right {
  float: right;
}



button::-moz-focus-inner {
  border: 0;
}
.buttons {
  display: flex;
  justify-content: space-around;
  width: 95%;
}
.btn {
  background-color: #00AAAA;
  border: 1px solid white;
  color: white;
  font-size: 18;
  cursor: pointer;
}
.active {
  border: 3px solid black;
}
.btn-l {
  padding: 10px;
  width: 94%;
}
.btn-s {
  /* padding: 5px; */
  width: 50px;
  height: 50px;
}
.btn-m {
  /* padding: 5px; */
  width: 100px;
  height: 50px;
}

.footer {
  text-align: center;
  width: 100%;
  position: fixed;
  top: 95vh;
  z-index: -100;
}

/* From https://www.w3schools.com/howto/howto_css_switch.asp */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0px;
  margin-right: 20px;
  margin-top: -8px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #00AAAA;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
