.exit-modal {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}
.exit-modal.hidden {
  display: none;
}

.cp_modalBody {
  background: #fff;
  padding: 2.5em 2em;
  border-radius: 0.5em;
}

.cp_exitTitle {
  font-size: 1.25em;
  margin-bottom: 1em;
}

.cp_exitText {
  margin-bottom: 2em;
  line-height: 1.8;
}

.cp_exitForm__label {
  display: block;
  margin-bottom: 1.5em;
}
.cp_exitForm__label input[type=checkbox] {
  display: none;
}
.cp_exitForm__label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.cp_exitForm__label span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2em;
  cursor: pointer;
}
.cp_exitForm__label span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  background: #fff;
  border: 3px solid #ccc;
  border-radius: 0.2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cp_exitForm__label span::after {
  content: "";
  position: absolute;
  top: -0.25em;
  left: 0.25em;
  width: 0.5em;
  height: 1em;
  border-right: 3px solid #800000;
  border-bottom: 3px solid #800000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
.cp_exitForm__textarea {
  width: 100%;
  padding: 0.5em;
  line-height: 1.6;
  min-height: 3em;
  border: 2px solid #ccc;
  border-radius: 0.2em;
  font-size: 16px;
}

.cp_actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  margin-top: 1em;
}

.cp_actionBtn {
  border: 1px solid #800000;
  font-size: 1.3em;
  height: 44px;
  border-radius: 22px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  color: #800000;
  cursor: pointer;
  padding: 0 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  outline: none;
}
.cp_actionBtn:hover {
  background: #800000;
  color: #fff;
}
.cp_actionBtn--close {
  border: 1px solid #333;
  color: #333;
}
.cp_actionBtn--close:hover {
  color: #000;
  background: #eee;
}

.cp_exitFormNote {
  font-size: 0.8em;
  color: #666;
  padding: 0.5em 0;
  margin-top: 1em;
}

.cp_closeIcon {
  width: 1em;
  height: 1em;
  position: relative;
}
.cp_closeIcon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1em;
  border-right: 1px solid #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.cp_closeIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1px;
  border-top: 1px solid #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
/*# sourceMappingURL=survey.css.map */
