#update-info{
    float: right;
    text-align: right;
    margin-right: 5px;
}
#options-container{
    margin: 10px;
}
#options-container label {
    display: block;
    margin-top: 5px;
}
#heat-modes-container{
    margin: 5px;
}
.hide{
    display: none;
}
.clearfix {
  clear: both;
}

:root {
  --color-primary: #ff4b00;
  --color-subtle: #b0b0b0;
}

.checkbox {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox input:checked ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox input:checked ~ .checkbox__checkmark:after {
  transform: scale(1);
}
.checkbox input:checked ~ .checkbox__body {
  font-weight: bold;
}
.checkbox:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox:hover input:checked ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 11px;
}
.checkbox .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 22px;
  height: 22px;
  display: block;
  background-color: rgb(63, 195, 128);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.25s ease;
}
.checkbox .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  transition: font-weight 0.25s ease;
}
.settings-icon circle,path{
    stroke:#fff;
}
.settings-icon{
    width: 40px;
}

.settings-row{
    line-height: 28px;
}
.settings-row-degrees > select{
    background-color: transparent;
    -webkit-appearance: none;
    border: 0;
    font-size: inherit;
    color: inherit;
    text-align: end;
}
.settings-row-degrees{
    float: right;
    margin-right: 8px;
}
.settings-title{
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.container {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.material-div {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2295F3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

#pageSettings{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    background-color: #dcdcdc;
    color: #333;
}
#pageSettings.onScreen{
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}
#pageSettings.outScreen{
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
}
#settings-layer{
    padding: 5px 20px 20px 20px;
}