

.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;
}

.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;
}

.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%;
}

.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;
}

.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;
}

.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;
}
.popup-question-all form ul {
  list-style: none;
  padding: 0;
}
.popup_after_question_form ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.popup_after_question_form ul li label input:checked + label {
  color: #feaf3b;
}
.popup-question-all form ul li input {float: right;margin: 9px 0 10px 7px;width: 15px;height: 15px;}
#popup_after_question_form > label {
  font-size: 32px;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 18px;
}
.popup-question-all form ul li {
  float: right;
  width: 100%;
  border-bottom: 1px solid #282828;
}
@media screen and (max-width: 746px) {
  .popup-question-all form {
    width: 90%;
  }
}