/* http://meyerweb.com/eric/tools/css/reset/ 2. v2.0 | 20110126
  License: none (public domain)
*/

/* html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
/* article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}  */
*,
*::before,
*::after {
  box-sizing: border-box;
}
.body {
  padding: 20px;
}
.h1 {
  font-weight: bold;
}
.results {
  /* margin: 20px; */
  display: block;
}
.numberConversions {
  width: 10px;
  /* border-bottom: 1px solid red; */
  text-decoration: underline deeppink;
}
.btn {
  display: block;
  align-items: center;
}
.strikethrough {
  text-decoration: line-through;
}
.alertContainer {
  width: 60%;
  margin: 2% 0;
}
.alertCopy {
  margin-right: 5%;
}
.alert-dismissible .btn-close {
  padding: 1rem 1rem;
}
.currentAmountValue {
  font-weight: bold;
}
.p-margin {
  margin-bottom: 5px;
}
.input-group > .form-control {
  flex: .75 1 auto;
}
.sliderContainer {
  width: 100%;
}
.slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: inherit;
  width: 82%;
  height: 20px;
  border-radius: 10px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.8;
  -webkit-transition: .2s;
  transition: opacity .2s;
  background-image: linear-gradient(90deg, #863426 50%, transparent 50%);
}
/* { ʕ•ᴥ•ʔっ TO-DO: create css for ::-moz-range-thumb when we can test with mozilla firefox} */ 
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #000000;
  height: 25px;
  width: 25px;
  border-radius: 15px;
  background: #ffffff;
  cursor: pointer;
}
.slider:hover {
  opacity: 3;
}
/* Chrome, Safari, Edge, Opera for input field num */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox for input field num */
input[type=number] {
  -moz-appearance: textfield;
}
.form-check {
  margin-left: 15px
}
.form-check-input {
  width: 1.2em;
  height: 1.2em;
}
.pourCheckbox {
  margin: 2px 0;
}

@media only screen and (min-width: 768px) {
  .alert-danger {
    padding: 4%;
  }
  .input-group > .form-control {
    flex: .5 1 auto;
  }
  .slider {
    width: 58%;
  }
}