#settingsSection{
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
#settingsButton{
  pointer-events: auto;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top:20px;
  z-index: 1000;
  background-size: cover;
}
.settingsContainer{
  overflow-y: scroll;
  pointer-events: auto;
  width: 350px;
  height: 435px;
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 4px 4px 10px rgba(48, 48, 48,0.5);
  border-radius: 20px;
  background-color: #FAF9F8;
  padding: 20px;
  display: none;

}
.settingsContainer-header{
  width: 100%;
  display: flex;
  font-size: 30px;
  font-weight: bold;
  color:#D7355C;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  font-family: 'Roboto Condensed';
  margin-bottom: 10px;

}
.settingsContainer-header-button{
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  font-family: 'Roboto Condensed';
}
.settingsContainer-body{
  font-family: 'Roboto Condensed';
  width: 100%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */

}
.settingsContainer-body-button{
  text-transform: uppercase;

  width: 100%;
  height: 40px;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0px 0px 5px rgba(48, 48, 48,0.5);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}
.settingsContainer-body-button:hover{
  color: white;
  background-color:#D7355C;

}
.settingsContainer-body-title{
  width: 100%;
  font-size: 25px;
  font-weight: bold;
  color:#D7355C;
  text-transform: uppercase;
  font-family: 'Roboto Condensed';
  margin-bottom: 5px;
}
.settingsContainer-body-line{
  display: flex;
  align-items: center;
  /* justify-content: center; */
  font-size: 12px;
  font-weight: bold;
  color:#D7355C;
  text-transform: uppercase;
  font-family: 'Roboto Condensed';
  margin: 5px;
}
.settingsContainer-body-checkBox{
  margin-left: 10px;
  width: 40px;
  height: 25px;
  background-color: #FAF9F8;
  box-shadow: inset 0px 0px 5px rgba(48, 48, 48,0.5);
  border-radius: 35px;
  display: flex;
}
.settingsContainer-body-checkBox-checked{
  margin-left: 10px;
  width: 40px;
  height: 25px;
  background-color: #D7355C;
  box-shadow: inset 0px 0px 5px rgba(48, 48, 48,0.5);
  border-radius: 35px;
  display: flex;
  justify-content: flex-end;
}
.settingsContainer-body-checkBox-inner{
  width: 25px;
  height: 25px;
  background-color: #FAF9F8;
  box-shadow: 0px 0px 5px rgba(48, 48, 48,0.5);
  border-radius: 35px;
}

.settingsContainer-body-line-button{
  text-transform: uppercase;

  width: 35px;
  height: 35px;
  font-size: 10px;
  font-weight: bold;
  box-shadow: 0px 0px 5px rgba(48, 48, 48,0.5);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  margin: 5px;
}
.settingsContainer-body-line-button-checked{
  text-transform: uppercase;

  width: 35px;
  height: 35px;
  font-size: 10px;
  font-weight: bold;
  box-shadow: 0px 0px 5px rgba(48, 48, 48,0.5);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  margin: 5px;
  color: white;
  background-color:#D7355C;
}
.settingsContainer-body-line-button:hover{
  color: white;
  background-color:#D7355C;

}



.settingsContainer-body-line-button-wide{
  text-transform: uppercase;

  width: 55px;
  height: 35px;
  font-size: 10px;
  font-weight: bold;
  box-shadow: 0px 0px 5px rgba(48, 48, 48,0.5);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  margin: 5px;
}
.settingsContainer-body-line-button-wide-checked{
  text-transform: uppercase;

  width: 55px;
  height: 35px;
  font-size: 10px;
  font-weight: bold;
  box-shadow: 0px 0px 5px rgba(48, 48, 48,0.5);
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  margin: 5px;
  color: white;
  background-color:#D7355C;
}
.settingsContainer-body-line-button-wide:hover{
  color: white;
  background-color:#D7355C;

}
