.report-box {
  position: fixed;
  display: inline-block;
  background-color: #fff;
  width: 30rem;
  max-width: 100%;
  max-height: 90vh;
  overflow: hidden;
  border-right: none;
  right: -100%;
  bottom: 0;
  z-index: 10000;
  box-shadow: -1px 1px 4px 0 rgba(51, 51, 51, 0.36);
  transition: 0.6s right;
}
.report-box.open {
  right: 0;
  bottom: 0;
}
.report-box .report-box-header {
  position: relative;
  background-color: #f3f3f3;
  text-align: center;
  padding: 20px 25px 20px 25px;
}
.report-box .report-box-header h4 {
  color: #292b2c;
  font-size: 1.2rem;
  font-weight: 700;
}
.report-box .report-box-header .report-close-btn {
  position: absolute;
  color: #999;
  font-size: 1.4rem;
  padding: 6px 8px;
  right: 4px;
  top: 5px;
  cursor: pointer;
}
.report-box .report-box-body {
  position: relative;
  padding: 10px 0 25px 0;
  max-height: 80vh;
  overflow-y: scroll;
}
.report-box .report-box-body .report-form {
  padding: 15px 0;
  margin-left: 20px;
  margin-right: 20px;
}
.report-box .report-box-body .report-form .options-wrap {
  margin-bottom: 15px;
}
.report-box .report-box-body .report-form .options-wrap .option-wrap {
  color: #000;
  font-size: 1rem;
  margin-bottom: 6px;
}
.report-box
  .report-box-body
  .report-form
  .options-wrap
  .option-wrap.extra-field {
  display: none;
}
.report-box .report-box-body .report-form .options-wrap .option-wrap label {
  display: inline;
  padding-left: 4px;
  cursor: pointer;
}
.report-box .report-box-body .report-form .report-email,
.report-box .report-box-body .report-form .report-website_url,
.report-box .report-box-body .report-form .report-reason {
  width: 100%;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  color: #333;
  border: 1px solid #ddd;
}
.report-box .report-box-body .report-form .report-msg {
  width: 100%;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  color: #333;
  border: 1px solid #ddd;
  height: 150px;
}
.report-box .report-box-body .report-form .report-send-btn {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 6px 10px;
  background-color: #8418d9;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
}
.report-box .report-box-body .report-success-box {
  display: none;
  visibility: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #e9e8eb;
  color: rgb(0, 0, 0);
  padding-top: 4rem;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  transition: 0.2s ease-in;
  -webkit-transform: translateY(-100%) scale(0);
  transform: translateY(-100%) scale(0);
}
.report-box .report-box-body .report-success-box.show {
  display: block;
  visibility: visible;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}
.report-box .report-box-body .report-success-box h4 {
  font-size: 2.4rem;
  padding-bottom: 20px;
}
.report-box .report-box-body .confirmation-box {
  position: absolute;
  left: 20px;
  right: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #111;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
  bottom: -50%;
  transition: all 0.4s ease-in;
}
.report-box .report-box-body .confirmation-box.show {
  -webkit-transform: scale(1);
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}
.report-box .report-box-body .confirmation-box .c-title {
  background-color: #f3f3f3;
  padding: 12px 5px;
  text-align: center;
  font-size: 1.2rem;
  border: 1px solid #f9f9f9;
}
.report-box .report-box-body .confirmation-box .c-body {
  padding: 20px 10px;
  text-align: center;
}
.report-box .report-box-body .confirmation-box .c-body p {
  font-size: 0.85rem;
}
.report-box .report-box-body .confirmation-box .c-footer {
  text-align: center;
}
.report-box .report-box-body .confirmation-box .c-footer .c-btn {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #dee2e6;
}
.report-box .report-box-body .confirmation-box .c-footer .c-btn.btn-cancel {
  margin-right: 5px;
  background-color: #f3f3f3;
  color: #111;
}
.report-box .report-box-body .confirmation-box .c-footer .c-btn.btn-confirm {
  background-color: red;
  color: #fff;
}