.msg-true-popup,
.msg-false-popup {
  color: #000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  padding: 17px;
  text-align: center;
  height: auto;
  line-height: 5;
  font-size: 21px;
}
.msg-false-popup {
  background-color: #ff4242;
}
.msg-true-popup {
  background-color: #0dff92;
}

.before_popup-question-all {
  position: fixed;
  z-index: 999;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #00000061;
  backdrop-filter: blur(4px);
  display: none;
}

.before_popup-question-all form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  background-color: #000000e8;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 15px #0000004f;
  color: #f0f0f0;
  border: 1px solid;
  font-family: "klmbold", tahoma;
  width: 50%;
  height: 75%;
  overflow: auto;
}

.before_popup-question-all form select {
  width: 100%;
  font-size: 17px;
  padding: 7px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-family: inherit;
  border: 2px solid #000;
}

.before_popup-question-all form input[type="text"] {
  width: 100%;
  font-size: 17px;
  padding: 7px 10px;
  border-radius: 5px;
  font-family: inherit;
  border: 2px solid #000;
  margin-bottom: 10px;
  display: none;
}

.before_popup-question-all-bt-send {
  text-align: center;
  line-height: 2.6;
  padding: 0;
  border-radius: 10pc;
  background-color: #feaf3b;
  color: #000;
  cursor: pointer;
  font-family: "klmbold", tahoma;
  font-size: 25px;
  line-height: unset;
}
.before_popup-question-all form ul {
  list-style: none;
  padding: 0;
}
.popup_before_question_form ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.popup_before_question_form ul li label input:checked + label {
  color: #feaf3b;
}
.before_popup-question-all form ul li input {
  float: right;
  margin: 9px 0 10px 7px;
  width: 15px;
  height: 15px;
}
#popup_before_question_form > label {
  font-size: 24px;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 18px;
}
.before_popup-question-all form ul li {
  float: right;
  width: 100%;
  /* border-bottom: 1px solid #282828; */
}
@media screen and (max-width: 746px) {
  .before_popup-question-all form {
    width: 90%;
  }
}

.survey-results {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 5px;
}
.survey-results > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  height: 25px;
  font-family: "vazir";
}

.survey_excellent {
  background-color: #1e6904;
}

.survey_good {
  background-color: #579a00;
}

.survey_medium {
  background-color: #bfb931;
}

.survey_weak {
  background-color: #e67a00;
}

.survey-map {
  display: flex;
  column-gap: 20px;

}
.survey-map__item {
  display: flex;
  column-gap: 5px;
  align-items: center;
}
.survey-map__item .sq {
  width: 15px;
  height: 15px;
}

.survey-map__item > span{
  font-size: 16px;
}
.survey-count{
  margin-bottom: 35px;
}

@media only screen and (min-width: 768px) {
  .survey-results > div {
    font-size: 16px;
    height: 35px;
  }
  .survey-map__item .sq {
    width: 20px;
    height: 20px;
  }

  .survey-map__item > span{
    font-size: 18px;
  }
}

.survey-container{
  display: none;
}

.survey-options{
  display: none;
}


#popup_before_question_form.show-options .survey-options{
  display: flex !important;
}

#popup_before_question_form.show-result .survey-container{
  display: block !important;
}