body {
  font-family: 'Roboto', 'Helvetica Neue', Verdana, Arial, sans-serif;
}

/*form styles*/
#customerFeedbackform {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

#customerFeedbackform fieldset .form-card {
  background: white;
  border: 0 none;
  border-radius: 0px;
  padding: 20px 40px 20px 40px;
  width: 100%;
  margin: 0;

  /*stacking fieldsets above each other*/
  position: relative;
}

#customerFeedbackform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;

  /*stacking fieldsets above each other*/
  position: relative;
}

/*Hide all except first fieldset*/
#customerFeedbackform fieldset:not(:first-of-type) {
  display: none;
}

#customerFeedbackform fieldset .form-card {
  text-align: left;
}

/*Blue Buttons*/
#customerFeedbackform .action-button {
  width: 100px;
  background: #000000;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

#customerFeedbackform .action-button:hover,
#customerFeedbackform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #000000;
}

/*Previous Buttons*/
#customerFeedbackform .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

#customerFeedbackform .action-button-previous:hover,
#customerFeedbackform .action-button-previous:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;
}

/*Dropdown List Exp Date*/
select.list-dt {
  border: none;
  outline: 0;
  border-bottom: 1px solid #ccc;
  padding: 2px 5px 3px 5px;
  margin: 2px;
}

select.list-dt:focus {
  border-bottom: 2px solid #000000;
}

/*The background card*/
.card {
  z-index: 0;
  border: none;
  border-radius: 0.5rem;
  position: relative;
}

/*FieldSet headings*/
.fs-title {
  font-size: 25px;
  color: #2C3E50;
  margin-bottom: 20px;
  font-weight: bold;
}

/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
  padding-left: 0;
}

#progressbar .active {
  color: #000000;
}

#progressbar li {
  list-style-type: none;
  font-size: 12px;
  width: 33.30%;
  float: left;
  position: relative;
}

/*Icons in the ProgressBar*/

#progressbar #basic:before {
  content: "1";
}

#progressbar #questions-list:before {
  content: "2";
}

#progressbar #message:before {
  content: "3";
}

/*ProgressBar before any progress*/
#progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 18px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #000000;
}

/*Imaged Radio Buttons*/
.radio-group {
  position: relative;
  margin-bottom: 25px;
}

.radio {
  display: inline-block;
  width: 204;
  height: 104;
  border-radius: 0;
  background: lightblue;
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  cursor: pointer;
  margin: 8px 2px;
}

.radio:hover {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
  box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

/*Fit image in bootstrap div*/
.fit-image {
  width: 100%;
  object-fit: cover;
  max-width: 100px;
}

.btn-primary {
  background-color: #000000;
  border-color: #000000;
}

.agree_terms_conditions {
  color: #000000;
  cursor: pointer;
}

.agree_terms_conditions:hover {
  color: #e51a49;
}

#agree_terms_conditions ul {
  padding-left: 15px;
}

#agree_terms_conditions ul li {
  margin-bottom: 10px;
}

@media (max-width:575.98px) {
  #customerFeedbackform fieldset .form-card {
    padding: 20px;
  }

  #progressbar li:before {
    width: 40px;
    height: 40px;
    line-height: 35px;
    font-size: 16px;
  }

  #progressbar li:after {
    top: 20px;
  }
}

/* From Uiverse.io by lenfear23 */
.paper-lift {
  background: linear-gradient(145deg, #000000, #000000);
  box-shadow: 5px 5px 6px #666666,
    -5px -5px 6px #ffffff;
}