html {
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 10%;
  color: #602b59;
}

body {
  background-color: #faeaf5;
}

.blue-mode {
  background-color: #eaf5fa;
  color: #2b5960;
}

h3 {
  padding-top: 0px;
}

h1 {
  padding-bottom: 0px;
}

img {
  width: 28px;
  height: 28px;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* Footer height */
}






.onoffswitch {
    position: relative; width: 75px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    height: 35px; padding: 0; line-height: 35px;
    border: 2px solid #E3E3E3; border-radius: 35px;
    background-color: #6BD0FF;
    transition: background-color 0.3s ease-in;
}
.onoffswitch-label:before {
    content: "";
    display: block; width: 35px; margin: 0px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 38px;
    border: 2px solid #E3E3E3; border-radius: 35px;
    transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #FF6BD0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
   border-color: #FF6BD0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
    right: 0px; 
}