.timeSettings {
  float: left;
  width: 100%;
  font-family: "Lato", Avenir, Verdana, Nunito, sans-serif;
  padding: 0 5px;
}

.pageTitle {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.mT20 {
  margin-top: 20px !important;
}

.pL15 {
  padding-left: 15px !important;
}

.content {
  background-color: #fff;
  color: #000;
}

.clock {
  margin: 0 14px;
  border-bottom: 1px solid #f2f2f2;
  padding: 18px 0;
  font-size: 14px;
  display: flex;
  /* flex-direction: column; */
  gap: 5px;
}

.clock span {
  display: block;
}

.clock span b {
  font-weight: bold;
}

.options {
  background-color: #fff;
  padding: 10px 15px;
  float: left;
  width: 100%;
}

.floatLeft {
  float: left;
}

.mB10 {
  margin-bottom: 10px;
}

.w100 {
  width: 100%;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 14px;
  color: #000;
  cursor: pointer;
}

.customControl {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.customRadio {
  float: right;
  margin-right: 0;
}

.dInlineBlock {
  display: inline-block !important;
}

.customControlInput {
  position: absolute;
  z-index: -1;
  opacity: 0;
  box-sizing: border-box;
  padding: 0;
}

.customControlInput:checked ~ .customControlLabel::before {
  border-color: #787878;
  background-color: #fff;
  border-width: 3px;
}

.customControlInput:focus ~ .customControlLabel::before {
  box-shadow: none;
}

.customControlInput:focus:not(:checked) ~ .customControlLabel::before {
  border-color: #adb5bd;
}

.customControlInput:not(:disabled):active ~ .customControlLabel::before {
  border-color: #adb5bd;
  background-color: #fff;
}

.customControlInput:disabled ~ .customControlLabel {
  color: #6c757d;
  cursor: not-allowed;
}

.customControlInput:disabled ~ .customControlLabel::before {
  background-color: #e9ecef;
}

.customControlLabel {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  cursor: pointer;
}

.customControlLabel::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
  border-radius: 50%;
  box-sizing: border-box;
}

.customControlLabel::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23000'/%3e%3c/svg%3e");
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
  box-sizing: border-box;
}

.customControlInput:checked ~ .customControlLabel::after {
  opacity: 1;
}

/* Clear floats */
.options::after {
  content: "";
  display: table;
  clear: both;
}

