:root {--main-color: #b9a78c;}

/***************/

.ckPanel {
    display: block; position: relative; cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 30px; height: 30px; margin: auto;
  }
  
  
  .ckPanel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0; width: 0;
  }
  
  
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border:1px solid var(--main-color);
    padding: 0;
  }
  
  .ckPanel:hover input ~ .checkmark {
    background-color: #efefef;
  }
  
  
  .ckPanel input:checked ~ .checkmark {
    background-color: #fff; 
  }
  
  
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  
  .ckPanel input:checked ~ .checkmark:after {
    display: block;
  }
  
  
  .ckPanel .checkmark:after {
    left: 10px; top: 5px;
    width: 5px; height: 10px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  


/**************/
.SurveyFormContainer {
    position: relative; display: none;
    background-color: #fff;
    font-family: Verdana, Tahoma, sans-serif;
    font-size: 14px; color: #000;    
}

.SurveyFormContainer .surveyLoading {
  position: absolute; display: block; z-index: 5;
  width: 100%; height: 100%; top: 0; left: 0;
  background-color: rgba(255,255,255, 0.8);
}
.SurveyFormContainer .surveyContainer {display: none;}


.SurveyFormContainer .surveyLoading svg {
  width: 100px;
  height: 100px;
  margin: 100px auto;
  position: relative;
  display: block;
  fill: var(--main-color);  
}


.SurveyFormContainer .header {
    position: relative; display: block; width: 768px;
}

.SurveyFormContainer .header .l { width: 200px; margin: auto;}

.SurveyFormContainer .header .title { 
    position: relative; display: block; text-align: center;
    width: 100%; margin: 30px auto; padding: 20px 0;
    font-family: Verdana, Tahoma, sans-serif;
    font-size: 14px; color: #000;
    border: 2px solid var(--main-color); border-width: 2px 0;
}


.SurveyFormContainer .formArea {
    position: relative; display: block; width: 100%; 
}
.SurveyFormContainer .formArea .qSet {
    position: relative; display: block; width: 90%;  margin:0 auto 30px;
}
.SurveyFormContainer .formArea .qSet .qLine {
    position: relative; display: flex; width: 100%;  align-items: center;

 
}

.SurveyFormContainer .formArea .qSet .qLine .qItem {
    width: 30%;
}
.SurveyFormContainer .formArea .qSet .qLine .aItem {
    position: relative; display: flex; align-items: center; width: 70%;
}

.SurveyFormContainer .formArea #qItemQuestions .qLine .aItem {
  flex-direction: row-reverse;
}


.SurveyFormContainer .formArea .qSet .qLineTop .qItem { text-indent: -9999px;}



.SurveyFormContainer .formArea .qSet .qLine .aItem li {
    width: 25%; padding: 10px 0; text-align: center;
}


.SurveyFormContainer .formArea .formObj {
  position: relative; display: block; margin-bottom: 20px;
  text-align: center;
}

.SurveyFormContainer .formArea .formObj label {
  position: relative; display: block; width: 100%;
  margin-bottom: 10px; font-weight: bold; line-height: 1.5;
  text-align: center;
}
.SurveyFormContainer .formArea .formObj .inp {
  border: 1px solid var(--main-color); width: 100%;
  font-size: 14px; color: #000; line-height: 1.5;
  font-family: Verdana, Tahoma, sans-serif;
  padding: 10px;
}
.SurveyFormContainer .formArea .formObj textarea.inp {
  height: 100px; width: 100%; max-width: 500px; margin: auto;
}

.SurveyFormContainer .formArea .formObj input.inp {
  width: 100%; max-width: 500px; height: 40px; margin: auto;
}


.SurveyFormContainer .formArea .submit {
  position: relative; display: block;
  width: fit-content; padding: 10px 20px;
  font-size: 14px; color: #fff; font-weight: bold;
  font-family: Verdana, Tahoma, sans-serif;
  background-color: var(--main-color);
  cursor: pointer; margin: auto;
  border: none;

}