#part3 {
  display: none;
}
#part3.active {
  display: block;
}
.survey-header {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box;
	position: fixed;
  left: 10px;
  top: 10px;
}

@media (min-width: 768px) {

    .logo-part3 {
        width: auto;
        height: 35px;
        display: block;
        border: none;
    }
}

@media (max-width: 767px) {
    .survey-header {
        padding: 5px 60px 5px 5px !important;
    }

    .button {
        margin: 10px auto 0 !important;
    }
}

.action-button {
  position: fixed;
  right: 5%;
  bottom: 16px;
}
.action-button2 {
  position: fixed;
  left: 5%;
  bottom: 9px;
}

.button {
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 10px 20px 10px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.dark--button {
  color: #062A26;
  padding: 10px 20px;
  background-color: #d5d5d5;
}
.dark--button:hover {
  background-color: #c1c1c1;
}

.dark--button.submit-button {
  color: #fff;
  background-color: #0781C4;
}
.dark--button.submit-button:hover {
  background-color: #088fd7;
}

@keyframes growProgressBar {
  0%,
  33% {
    --pgPercentage: 0;
  }
  100% {
    --pgPercentage: var(--value);
  }
}

@property --pgPercentage {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

.progressbar {
  position: fixed;
  top: 20px;
  right: 50px;
}

.error {
            border: 2px solid red !important; /* Red border for error */
        }
        .centered-container {
        position: fixed;
    top: 0%;
    left: 25%;
    text-align: center;
    right: 25%;   
    background-color: #d5d5d5;
	color: #062A26;
    border-radius: 0 0 25px 25px;
    z-index: 9;
}

@media only screen and (max-width: 600px) {
   .centered-container {
        position: fixed;
    top: 50px;
    left: 10%;
    text-align: center;
    right: 10%;
    z-index:900;  
    background-color: #18b9a4;
    border-radius: 0 0 25px 25px;
}

.centered-container h2 {
  font-size: 15px !important;
}

}



div[role="progressbar"] {
--size: 4rem;
  --fg: #1bb827;
  --bg: #e8e4e8;
  --pgPercentage: var(--value);
  animation: growProgressBar 3s 1 forwards;
  z-index:1;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
      closest-side,
      white 80%,
      transparent 0 99.9%,
      white 0
    ),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: #000;
}

div[role="progressbar"]::before {
  counter-reset: percentage var(--value);
  content: counter(percentage) "%";
}

.survey-container {
  max-width: 700px;
  margin: 0 auto;
}

.survey-container section {
  margin-bottom: 3%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 5%;
  border-radius: 2%;
  background-color: #fff;
  opacity: 0.5;
}

.survey-container section.active {
  opacity: 1;
}


.survey-container section .question {
  color: #000;
  font-size: 16px;
 /* font-weight: 500;*/
  line-height: 20px;
  margin-bottom: 30px;
}

.survey-container section .question strong {
  font-weight: 700;
}

.survey-container section .answer textarea {
  border-radius: 8px;
  border: 1px solid #1f2429;
  background: #fff;
  width: 100%;
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
  outline: none;
  resize: none;
  font-family: "Inter", sans-serif;
}

.survey-container section .answer label {
  position: relative;
  width: 100%;
  display: block;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 36px;
  cursor: pointer;
  margin-bottom: 10px;
  border-color: #1f2429;
  text-align: left;
}

.survey-container section .answer label.checked {
  border-color: #0781C4 !important;
  background: #0781C4;
  color: #fff;
  font-weight: 700;
}

.survey-container section .answer label:hover {
  
 border-color: #0781C4;
  background: #0781C4;
color: #fff;
}

.survey-container section .answer label::after {
 content: "";
    width: 22px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translate(0, -50%);
    
}

.survey-container section .answer label.checkbox-item::after {
  background: url("../images/checkbox-icn.svg") no-repeat left top;
}

.survey-container section .answer label.radio-item::after {
  background: url("../images/radio-icn-active.svg") no-repeat left top;
}

.survey-container section .answer label.checked::after {
  opacity: 1;
}

.survey-container section .answer label input[type="checkbox"],
.survey-container section .answer label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}







.survey-container section .answer2 label {
 
  width: 100%; 
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #1c274c;
  font-size: 15px;
  font-weight: 400;
  line-height: 36px;
  cursor: pointer;
  margin-bottom: 10px;
}

.survey-container section .answer2 label.checked {
  border-color: #1f2429;
  background: #fff;
  font-weight: 700;
      background: #18b9a4;
    color: #fff;
}

.survey-container section .answer2 label:hover {
  border-color: #1f2429;
}

.survey-container section .answer2 label::after {
  content: "";
  width: 21px;
  height: 20px; 
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
  opacity: 0.1;
}

.survey-container section .answer2 label.checkbox-item::after {
  background: url("../images/checkbox-icn.svg") no-repeat left top;
}

.survey-container section .answer2 label.radio-item::after {
  background: url("../images/radio-icn.svg") no-repeat left top;
}

.survey-container section .answer2 label.checked::after {
  opacity: 1;
}

.survey-container section .answer2 label input[type="checkbox"],
.survey-container section .answer2 label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

































.survey-container section .answer .multiple-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center; 
      border-radius: 5px;
    padding: 5px;
}

.survey-container section .answer .multiple-block:hover {
border: 1px solid #000;
}

.survey-container section .answer .multiple-block h5 {
  width: 300px;
   color: #1c274c;
  font-size: 15px;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
}

.survey-container section .answer .multiple-block .multiple-block-options {
  width: calc(100% - 300px);
}

.survey-container section .answer .multiple-block-options label:hover {
  border-color: transparent !important;
}

.survey-container
  section
  .answer
  .multiple-block-options
  label.radio-item2::after {
	  
	background: url("../images/radio-icn-active.svg") no-repeat left top;
  right: calc(100% - 26px);
}

.survey-container section .answer .multiple-block-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.survey-container section .answer .multiple-block-options label {
  font-size: 14px;
  color: #747e9e;
  width: auto;
  margin-right: 30px;
  padding-left: 30px;
  margin-bottom: 0;
}

.survey-container section .answer .multiple-block-options label:last-child {
  margin-right: 0;
}

.survey-container section .answer .multiple-block-options label.checked {
 border-color: #1f2429;
  background: #fff;
  font-weight: 700;
      background: #18b9a4;
    color: #fff;
}


 
@media (max-width: 767px) {
  header {
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    background-image: none;
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
    width: 100%;
    z-index: 1;
  }


.survey-container section .answer .multiple-block h5 {
  width: 100%;
  color: #1c274c;
  font-size: 15px;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
}

.survey-container section .answer .multiple-block .multiple-block-options {
  width: 100%;
}

  .action-button {
    right: 10px;
    bottom: 10px;
  }



  .footer-logo {
    left: 10px;
    bottom: 10px;
  }

  .instructions {
    padding: 80px 30px 0;
    overflow-y: scroll;
    margin-bottom: 70px;
    height: calc(100vh - 150px);
  }

  .progressbar {
    top: 5px;
    right: 5px;
  }

  div[role="progressbar"] {
    --size: 44px;
  }

  div[role="progressbar"]::before {
    font-size: 15px;
    font-weight: 700;
  }

  .survey-container {
    margin: 0 20px;
  }
}
