* {
    margin: 0;
    padding: 0
}

html {
    height: 100%;
}

p {
    color: grey
}

#heading {
    text-transform: uppercase;
    color: black;
    font-weight: bold
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    position: relative
}

.form-card {
    text-align: left;
    padding:  30px;
}

#msform fieldset:not(:first-of-type) {
    display: none
}

#msform select {
    padding: 10px 15px 10px 15px;
    border: 1px solid lightgray;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: lightgrey;
    background-color: white;
    font-size: 16px;
    height: 45px;
}

#msform select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    color: black;
    box-shadow: none !important;
    border: 1px solid #67BFCD;
    outline-width: 0
}

#msform input,
#msform textarea {
    padding: 10px 15px 10px 15px;
    border: 1px solid lightgray;
    border-radius: 0px;
    margin-bottom: 10px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: black;
    background-color: white;
    font-size: 16px;
    height: 45px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: lightgrey;
  opacity: 1; /* Firefox */
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #67BFCD;
    outline-width: 0
}



#msform .action-button {
    width: 100px;
    background: #77CD43;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #61AF32
}

#msform .action-button-previous {
    width: 100px;
    background: #E16951;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #D04A2F
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 19px;
    color: gray;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

.purple-text {
    color: green;
    font-weight: normal
}

.steps {
    font-size: 18px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    color: #F0836D
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 12.5%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar #li1:before {
    content: "1"
}

#progressbar #li2:before {
    content: "2"
}

#progressbar #li3:before {
    content: "3"
}

#progressbar #li4:before {
    content: "4"
}

#progressbar #li5:before {
    content: "5"
}

#progressbar #li6:before {
    content: "6"
}

#progressbar #li7:before {
    content: "7"
}

#progressbar #li8:before {
    content: "✓"
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #D9705B
}

.progress {
    height: 20px
}

.progress-bar {
    background-color: #C2442B
}

.fit-image {
    width: 100%;
    object-fit: cover
}



/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-top: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 7px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

