/* @import url("https://fonts.googleapis.com/css?family=Nunito:400,700");


html, body {
  height: 100%;
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-size: 16px;
} */

.wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.question-heading {
  display: flex;
  justify-content: center;
  text-align: center;
}

.card1 h3 {
  color: #262626;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
}
.list-group-item h6{
  font-size: 14px !important;
}


p.small {
  font-size: 14px;
  text-align: center;
}

a:hover {
  text-decoration: unset;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #fa5700;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  min-width: 290px;
  min-height: 290px;
  max-width: 262px;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
}

.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #fa5700;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.card1:hover:before {
  transform: scale(30);
}

.card1:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.card1:hover h3 {
  transition: all 0.3s ease-out;
  color: #ffffff;
}

.card1 .filter-white {
  transition: all 0s ease-out;
  filter: invert(43%) sepia(46%) saturate(5204%) hue-rotate(3deg) brightness(100%) contrast(101%);
}

.card1:hover .filter-white {
  transition: all 0s ease-out;
  filter: invert(91%) sepia(100%) saturate(0%) hue-rotate(294deg) brightness(108%) contrast(101%);
}

.main-question-wrapper {
  padding: 50px;
}

canvas {
  border: 2px solid #fa5700;
}

.signature-pad--body {
  display: flex;
  justify-content: center;
}

.signature-pad--footer {
  text-align: center;
  margin: 20px 0px;
}
.no-touch button[type="submit"]:not(.w-btn):hover, .no-touch input[type="submit"]:hover{
  color: #fa5700 !important;
}
.question-navigation button.go-back{
  display: inline-flex;
  align-items: center; 
}
.question-navigation button:not(:hover):not(:active):not(.has-background){
  background-color: #fa5700;
  color: #FFF;
}

.question-navigation button.go-back:hover{
  background-color: #FFF !important;
  color: #fa5700 !important;
  border: 1px solid #fa5700 !important;
}


.box_input {
  box-shadow: inset 0 -1px 0 #ddd;
  outline: 0;
}

.box_input {
  box-shadow: inset 0 -1px 0 #ddd;
  outline: 0;
  border: unset !important;
}

.text-primary {
  color: #fa5700 !important;
}

.question-heading h2 {
  margin-bottom: 20px;
  margin-top: 50px;
}

.main-question-wrapper {
  margin-top: 0px;
}

input[type="range"] {
  /* width: 400px; */
  height: 15px;
  -webkit-appearance: none;
  background: #111;
  outline: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 1);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fa5700;
  cursor: pointer;
  border: 4px solid #333;
  box-shadow: -407px 0 0 400px #fa5700;
}

.ranger-wrapper {
  background: #f2f8f9;
  padding: 10px;
  border-radius: 5px;
}

.input_value {
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 18px;
}

.go-corner {
  cursor: pointer;
}

.card1 {
  cursor: pointer;
}

.card_input {
  cursor: unset;
}

.btn-primary {
  background: #fa5700 !important;
  border: unset;
  color: #fff !important;
}

.card1:hover .btn-primary {
  background: #fff !important;
  color: #000 !important;
}

.summery {
  background: white;
  margin-bottom: 0px !important;
  padding: 10px;
}

.error{
  color: #dc3545;
  font-size: 12px;
}
.required_validaiton{
  text-align: center;
  font-size: 12px;
}
.popup {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  top: 0;
  /* background-color: aqua; */
}
.popup-overlay {
  background-color: rgba(0, 0, 0, 0.575);
  height: 100vh;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.main-popup {
  position: absolute;
  left: 0;
  height: 100vh;
  width: 30%;
  z-index: 1;
  background: #FFF;
  padding: 30px 20px;
  line-height: 1rem;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  transform: translateX(-100%);
}
.close-btn {
  border: .6px solid white;
  padding: 10px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  transition: .10s ease all;
}
.close-btn:hover {
  background: white;
}
.popup-content p {
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

.side-cart p {
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}
.popup-content {
  min-width: 100%;
}
@keyframes slide-in {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(0);
  }
}
@keyframes slide-out {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

.bar-container {
  background: #f0f0f0;
  height: 10px;
  width: 40%;
  margin: 0 auto;
  border-radius: 10px;
}
.bar {
  background: #fa5700;
  height: 10px;
  width: 0%;
  border-radius: 10px;
  transition: width 400ms;
}

.go-back{
  justify-content: center;
  min-width: 120px;
}


input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime], input[type=datetime-local], input[type=color], .site textarea{
  border:unset;
}
input:not([type="submit"]) {
  outline: none!important;
}
input:not([type="submit"]) {
  font-weight: 400;
  letter-spacing: 0em;
  border-radius: 0.3rem;
  border-color: #e8e8e8;
  color: #333333;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.08) inset;
  
}
.form-control{
  border:1px solid #000 !important;
  border-radius: 5px !important;
}

@media (max-width: 767px) {
  .bar-container {
    width: 100%;
  }
  .col-md-5.order-md-2.mb-4{
    padding: 0 !important;
  }
  .popup-content{
    padding-top: 40px;
  }
  .main-popup{
    width: 85%;
  }
}

.progress-percentage{
  font-weight: bold;
  margin-bottom: 5px;
}


button.btn.go-back.btn-submit.mx-2.btn-lg:hover{
  border-color: #263152 !important;
  background: white !important;
  color: #263152 !important;
}

.input-group>.custom-select:not(:last-child), .input-group>.form-control:not(:last-child){
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.ul.list-group{
  margin-left: 0px !important;
}

.main-question-wrapper h6{
  font-size: 0.7rem !important;
}
.main-question-wrapper h4,h2{
  font-size: 1rem !important;
}