.collection-survey-popup-ct {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999999;
  box-sizing: border-box;
}

.collection-survey-popup-ct * {
  box-sizing: border-box;
  margin: 0px;
  font-family: proxima-nova;
}

.collection-survey-popup-ct .collection-survey-popup {
  width: 700px;
  height: 600px;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 11px;
  border: 5px solid #676767;
  padding: 20px;
}

.collection-survey-popup-ct.user .collection-survey-popup {
  height: auto;
  overflow: hidden;
}

.collection-survey-popup-ct .question-ct {
  padding: 20px 20px;
  border-radius: 10px;
  background-color: #2e3043;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.collection-survey-popup-ct .question-ct input {
  margin-bottom: 20px;
}

.collection-survey-popup-ct .question-ct .util-label {
  margin-bottom: 3px;
}

.collection-survey-popup-ct .util-save-btn {
  margin-top: auto;
}

.collection-survey-popup-ct .addQuestion {
  margin-bottom: 30px;
}

.collection-survey-popup-ct .question-ct .question {
  margin-bottom: 20px;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.collection-survey-popup-ct .question span {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  color: #111;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: 700;
  background-color: hsl(var(--primary-green-04));
}

.util-radio-input+.util-radio-label:before {
  border: 5px solid hsl(var(--grey-05));
  min-width: 20px;
  min-height: 20px;
}

.collection-survey-popup-ct .option-ct .util-checkbox-with-label {
  margin-top: -10px;
  margin-bottom: 20px;
}

.collection-survey-popup-ct .util-toggle {
  margin-bottom: 20px;
}

.collection-survey-popup-ct textarea {
  resize: vertical;
}

.collection-survey-popup-ct .add-option {
  margin-bottom: 20px;
}

.collection-survey-popup-ct .addQuestion,
.collection-survey-popup-ct .deleteQuestion,
.collection-survey-popup-ct .add-option {
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: none;
  background-color: #87d6ff;
  border-radius: 5px;
  padding: 0px 10px;
  height: 36px;
  min-height: 36px;
  gap: 5px;
}

.collection-survey-popup-ct .addQuestion span,
.collection-survey-popup-ct .deleteQuestion span,
.collection-survey-popup-ct .add-option span {
  font-size: 19px;
}

.collection-survey-popup-ct .deleteQuestion {
  background-color: #f85656;
}

.collection-survey-popup-ct .options-label {
  font-weight: 900;
  text-transform: uppercase;
  color: grey;
  margin-bottom: 10px;
}

.collection-survey-popup-ct .option-row {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}

.collection-survey-popup-ct .option-row ::before,
.collection-survey-popup-ct .option-row input {
  margin: 0px !important;
}

.collection-survey-popup-ct .option-row .deleteOption {
  color: #f85656;
  cursor: pointer;
  font-size: 30px;
}

.collection-survey-popup-ct .option-row .right-answer {
  color: grey;
  cursor: pointer;
  font-size: 30px;
}

.collection-survey-popup-ct .option-row .right-answer.checked {
  color: #3aff98;
}

.collection-survey-popup-ct .btns-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.collection-survey-popup-ct .util-checkbox-label {
  margin-top: 3px;
}

.collection-survey-popup-ct span {
  user-select: none;
}

.collection-survey-popup-ct .errors-ct {
  margin-bottom: 10px;
}

.collection-survey-popup-ct .input-error {
  border: 5px solid red;
}

.collection-survey-popup-ct .question-ct .util-form-error {
  margin-top: -18px;
  margin-bottom: 10px;
}

.collection-survey-popup-ct .main-errors-ct .util-form-error {
  margin-top: 10px;
}

.collection-survey-popup-ct .option-ct .util-save-btn,
.collection-survey-popup-ct .question-ct .util-save-btn {
  padding: 5px 10px;
  font-size: 16px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.collection-survey-popup button.disabled {
  cursor: not-allowed !important;
  opacity: 0.5;
}

.collection-survey-popup-ct .confirmation-modal {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999999999;
}

.collection-survey-popup-ct .confirmation-modal .modal {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 5px;
  align-items: center;
  gap: 30px;
  border: 5px solid grey;
  background-color: #222;
}

.collection-survey-popup-ct .confirmation-modal .modal .btns-row {
  display: flex;
  gap: 30px;
}

.collection-survey-popup-ct .util-radio-with-label {
  margin-bottom: 10px;
}

.collection-survey-popup-ct .counter {
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 20px;
  color: #fff;
}

@media(max-width: 600px) {
  .collection-survey-popup-ct .collection-survey-popup {
    width: 95vw;
    max-height: 80vh;
  }
}