*,
*:before,
*:after {
  box-sizing: border-box;
}

:root {
    --semperred: #EF4642;
    --eclipse: #2C313D;
    --denim: #374650;
    --blueslate: #657680;
    --platinum: #D2D7D9;
    --lightgray: #F4F4F4;
    --darkgray: #484848;
    --placeholdergray: #747b84;
    --linkcolordark: #343d50;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--placeholdergray);
    opacity: 1; /* Firefox */
  }
html {
    height: 100%;
}
body {
    height: 100%;
    font-family: proxima-nova, sans-serif;
    background-color: var(--lightgray);
    /* background-color: white; */
}

textarea, select, input, button { outline: none; }

.progressforminput {
    -webkit-appearance: none; 
    -moz-appearance: none;
    font-size: 1em;
    padding: 8px;
    border: 1.5px solid;
    border-color: var(--placeholdergray);
    border-radius: 5px;
    width: 100%;
    box-shadow: none ! important;
    outline: none ! important;
}

.invalid {
    border: 2px solid !important;
    border-color: var(--semperred) !important;
    border-radius: 5px !important;
    z-index: 999 !important;
}

.hiddenelement {
    display: none !important;
}

.darken:hover, .darken:focus {
  color: white !important;
  background-color: #aa312e !important;
  border-color: #aa312e !important;
  transition: all 0.25s linear !important;
}
/* .thicken:hover, .thicken:focus { */
  /* background-color: #aa312e !important; */
  /* border-width: 2px; */
  /* font-weight: 900; */
  /* transition: all 0.25s linear !important; */
/* } */

.raise:hover,
.raise:focus {
  /* box-shadow: 0 0.5em 0.5em -0.4em var(--placeholdergray); */
  /* transform: translateY(-0.25em); */
}

.scale:hover,
.scale:focus {
  /* box-shadow: 0 0.5em 0.5em -0.4em var(--placeholdergray); */
  /* transform: scale(1.05); */
}

/* Make clicks pass-through */
#nprogress {
    pointer-events: none;
  }
  
  #nprogress .bar {
    background: var(--semperred);
  
    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;
  
    width: 100%;
    height: 2px;
  }
  
  /* Fancy blur effect */
  #nprogress .peg {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px var(--semperred), 0 0 5px var(--semperred);
    opacity: 1.0;
  
    -webkit-transform: rotate(3deg) translate(0px, -4px);
        -ms-transform: rotate(3deg) translate(0px, -4px);
            transform: rotate(3deg) translate(0px, -4px);
  }
  
  /* Remove these to get rid of the spinner */
  #nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px;
  }
  
  #nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;
  
    border: solid 2px transparent;
    border-top-color: var(--semperred);
    border-left-color: var(--semperred);
    border-radius: 50%;
  
    -webkit-animation: nprogress-spinner 400ms linear infinite;
            animation: nprogress-spinner 400ms linear infinite;
  }
  
  .nprogress-custom-parent {
    overflow: hidden;
    position: relative;
  }
  
  .nprogress-custom-parent #nprogress .spinner,
  .nprogress-custom-parent #nprogress .bar {
    position: absolute;
  }
  
  @-webkit-keyframes nprogress-spinner {
    0%   { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  @keyframes nprogress-spinner {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
