: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;
}
.backbutton:hover, .backbutton:focus {
  color: white !important;
  /* background-color: #aa312e !important; */
  /* border-color: #aa312e !important; */
  transition: all 0.25s linear !important;
}
.backbutton:hover img, .backbutton:focus img {
  filter: invert(1);
  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); }
  }

  /* for he dpa 100 */
  .cszinputcontainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.csztitlecontainer, .csztextcontainer, .cszconditionscontainer {
    width: 100%;
    text-align: center;
    font-weight:600;
    color: white;
    font-size: 2em;
    margin-top: 25px;
}
.csztitlecontainer {
    font-size: 3em;
    max-width: 500px;
    margin-bottom: 40px;
    color: white;
}
.csztextcontainer, .cszconditionscontainer{
    font-weight: normal;
    font-size: 1em;
    color: var(--blueslate);
}
.cszinputfieldcontainer {
    background-color: white;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 60px;
    padding-bottom: 80px;
}
.csztopcopy, .progresstext {
    width: 100%;
    font-size: 1.25em;
    font-weight: 600;
    text-align: center;
    padding: 10px 0px;
}
.cszbottomcopy {
    width: 100%;
    display: flex;
    align-items: center;
    color: #657680;
    margin-top: 20px;
}
.progressbuttonholder {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.progressbuttonholder button {
  background-color: var(--semperred);
  color: white;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 5px;
  border: none;
  min-width: 200px;
  cursor: pointer;
}
.progressbuttonholder button.backbutton {
  background-color: #D2D7D9;
  color: #2C313D;
}


.backarrowcontainer {
  margin-right: 10px;
}
.backarrowcontainer img{
  width: 10px;
  height: 10px;
}
.badgecontainer {
  width: 64px;
  margin-left: auto;
  margin-right: auto;
}
.badgecontainer img {
  width: 100%;
  padding-bottom: 10px;
}
.titlecontainer {
  color: var(--semperred);
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 2.5em;
  padding-left: 25px;
  padding-right: 25px;
  /* margin-top: 15px; */
}
.copycontainer {
  color: var(--blueslate);
  width: 100%;
  font-size: 1em;
  line-height: 1.5em;
}

.formcontainer {
  margin-top: 40px;
  /* width: 100%; */
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
input, select {
  outline: none;
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box;
  /* height: 100%; */
  padding: 15px;
  border: 1px solid;
  border-color: var(--blueslate);
  -webkit-appearance: none; 
  -moz-appearance: none; 
}

select {
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 -8 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
}

.sectionheader {
  margin-top: 60px;
  width: 100%;
  font-size: 1.5em;
  font-weight: 400;
  padding-top: 20px;
  padding-bottom: 10px
}
.formrow {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.formrowerror {
  width: 100%;
  font-size: .6em;
  color: var(--semperred);
}
.formrowlabel {
  color: #657680;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.75em;
  text-align: left;
}
.formrowinput {
  max-height: 47px;    
}
.multipleformrow {
  width: 100%;
  padding: 0px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  box-sizing: border-box;
  margin-top: 0px;
}

@media (max-device-width: 1024px), (max-width: 1023px) {
  .formcontainer {
    width: 90%;
    /* margin-left: auto; */
    /* margin-right: auto; */
  }
  .multipleformrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 0px;
      margin-bottom: 0px;
  }
  .formrow {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .progressbuttonholder {
    width: 100% !important;
  }
  .progressbuttonholder button {
    width: 100% !important;
  }
  .cszinputcontainer {
      min-width: 90vw !important;
      max-width: 90vw !important;
      width: 90vw !important;
      margin-left: auto;
      margin-right: auto;
  }
  .cszinputfieldcontainer {
      width: 100% !important;
      padding-left: 25px;
      padding-right: 25px;
      padding-top: 30px;
      padding-bottom: 30px;
      /* margin-left: auto; */
      /* margin-right: auto;         */
  }
  .csztopcopy, .progresstext {
      font-size: 1.5em;
  }

}
