html {
    position: relative;
    min-height: 100%;
}

.break-word {
    word-wrap: break-word;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

input[readonly].readonly-text {
    background-color: #fff;
    cursor: text;
}

.length-field {
    box-sizing: border-box;
}

.btn-primary {
    background-color: #C2DA51;
    border-color: #C2DA51;
    color: #fff
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #d3d3d3;
  background-position: 0 -15px;
}
.btn-secondary:active,
.btn-secondary.active {
  background-color: #d3d3d3;
  border-color: #d3d3d3;
}

.navbar-default {
    background-color: #f8f8f8;
    min-height: 70px;
}

.navbar-text {
    margin-top: 20px;
    margin-bottom: 15px;
    margin-left: 5px;
  }

li {
    display: block;
}

li:before {
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "\e080";
    font-family: 'Glyphicons Halflings';
    float: left;
    margin-right: 5px;
    color: #d3d3d3;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
  }

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    margin-top: auto;
    bottom: 0;
    width: 100%;
    background-color: #f8f8f8;
    border-color: #e7e7e7;
    color: #545e67;
    text-align: center;
}

.footer p {
    font-size: 12px;
    margin: 6px 0 6px;
}

/* Slider styles
-------------------------------------------------- */

.slidecontainer {
    width: 100%;
    box-sizing: border-box;
  }  

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .slider:hover {
    opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #C2DA51;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #C2DA51;
    cursor: pointer;
  }

/* Checkbox styles
-------------------------------------------------- */

/* Customize the label (the container) */
.checkboxcontainer {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 3px;
    cursor: pointer;
    font-weight: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkboxcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .checkboxcontainer:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkboxcontainer input:checked ~ .checkmark {
    background-color: #C2DA51;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkboxcontainer input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkboxcontainer .checkmark:after {
    left: 6px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }