html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



.float-ten {
    width: 12%;
    height: 88vh;
    float: left;
    padding: 10px;
    padding-left: 30px;
    /*border: 2px solid black;*/
    overflow-x: auto;
    overflow-y: auto;
    display: inline-block;
}

.float-fifteen {
    width: 15%;
    height: 88vh;
    float: left;
    padding: 10px;
    /*border: 2px solid black;*/
    overflow-x: auto;
    overflow-y: auto;
    display: inline-block;
}

/*.float-thirty {
    width: 30%;
    height: 88vh;
    float: left;
    padding: 10px;*/
    /*    border: 2px solid black;
*/
/*}

.float-sixty {
    width: 60%;
    height: 88vh;
    float: left;
    padding: 10px;*/
    /*    border: 2px solid black;
*/
/*}

.float-seventy {
    width: 70%;
    height: 55vh;
    float: left;*/
    /*    border: 2px solid black;*/
    /*display: inline-block;
}*/

.scroll {
    position: relative;
    zoom: 100%;
    width: 100%;
    height: 73vh;
    overflow-x: auto;
    overflow-y: auto;
}

.holeDisplayContainer {
    width: 70%;
    height: 88vh;
    float: left;
    /*    border: 2px solid black;*/
    overflow-x: auto;
    overflow-y: auto;
}

.holeDisplayHeader {
    width: 100%;
    height: 8vh;
    position: fixed;
    z-index: 10;
    height: 6vh;
    background: white;
}


.holeDisplayDiv {
    position: relative;
    zoom: 40%;
    display: inline-block;
}

.border {
    border: 2px solid black;
}

.randoPad {
    padding-top: 4px;
}

/* the below was taken from https://medium.com/@predragdavidovic10/native-dual-range-slider-html-css-javascript-91e778134816 */
.range_container {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 10% auto;
}

.sliders_control {
    position: relative;
    min-height: 20px;
}

.form_control {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #635a5a;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
    background: #f7f7f7;
}

input[type=range]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
    -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

input[type="number"] {
    color: #8a8383;
    width: 50px;
    height: 30px;
    font-size: 20px;
    border: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: #C6C6C6;
    pointer-events: none;
}

#fromStrokeSlider {
    height: 0;
    z-index: 1;
}

/* the above was taken from https://medium.com/@predragdavidovic10/native-dual-range-slider-html-css-javascript-91e778134816 */
