html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.btnExtraSm {
    color: white;
    background-color: #0A7EF5;
    border-color: green;
    width: 38%;
    margin-left: 10%;
}

p {
    margin: 0;
    padding: 0;
}

.wrapper {
    width: 50px;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

#custom-toggle {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 40px;
    background-color: lightgray;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    padding: 0 2px;
    margin: 0;
    cursor: pointer;
}

    #custom-toggle.tgl-def::-webkit-slider-thumb {
        background-color: green;
    }

    #custom-toggle.tgl-on::-webkit-slider-thumb {
        background-color: deepskyblue;
    }

    #custom-toggle.tgl-off::-webkit-slider-thumb {
        background-color: darkblue;
    }

    #custom-toggle::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        -webkit-border-radius: 25px;
        border-radius: 25px;
    }

    #custom-toggle:focus {
        outline: none;
    }

.rangeActive {
    background-color: green;
}

.footer {
    position: initial !important;
    float: left;
    line-height:45px!important;
    border-bottom: 1px solid #e5e5e5;
}