.report-a-problem-container {
  min-height: 700px;
  max-width: 1370px;
  margin: 0 auto 50px;
}
.report-a-problem-container .report-a-problem-page-list {
  padding: 20px 0;
  margin: 0 3.5%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.report-a-problem-container .report-a-problem-page-list .report-a-problem-page-button {
  flex: 0 0 106px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.report-a-problem-container .report-a-problem-page-list .report-a-problem-page-button.clickable {
  cursor: pointer;
}
.report-a-problem-container .report-a-problem-page-list .report-a-problem-page-button.rap-hidden {
  display: none;
}
.report-a-problem-container .report-a-problem-page-list .report-a-problem-page-button-icon {
  width: 58px;
  height: 58px;
  background-color: var(--rap-secondary-colour);
  border-radius: 50%;
  text-align: center;
  margin: 0 auto 6px;
  padding-top: 4px;
  white-space: nowrap;
  position: relative;
}
.report-a-problem-container .report-a-problem-page-list .report-a-problem-page-button-icon img {
  max-width: 33px;
  max-height: 33px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.report-a-problem-container .report-a-problem-page-list .report-a-problem-page-button-text {
  white-space: nowrap;
}
.report-a-problem-container .report-a-problem-page-list .clickable .report-a-problem-page-button-icon,
.report-a-problem-container .report-a-problem-page-list .rap-active .report-a-problem-page-button-icon {
  background-color: var(--rap-primary-colour);
}
.report-a-problem-container .report-a-problem-page-list:after {
  background-image: radial-gradient(circle, #f0eef2 3px, transparent 3px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 16px 8px;
  display: block;
  width: calc(100% - 90px);
  height: 16px;
  content: "";
  position: absolute;
  z-index: -1;
  top: 44px;
  margin-left: 45px;
  margin-right: 45px;
}
.report-a-problem-container .rap-message-area {
  text-align: center;
  border: 3px solid var(--rap-secondary-colour);
  border-radius: 36px;
  margin-bottom: 30px;
  background: #f4f3f5;
  padding: 30px;
  color: var(--rap-secondary-colour);
  font-weight: 900;
  font-size: 24px;
}
.report-a-problem-container .rap-page {
  padding: 0;
  background-color: #f4f3f5;
  border-radius: 36px;
  display: none;
}
.report-a-problem-container .rap-page.rap-active {
  display: block;
}
.report-a-problem-container .rap-page-title h4 {
  background-color: #F0EEF2;
  border-radius: 36px;
  margin: 0;
  padding: 0 0 0 46px;
  font-size: 24px;
  line-height: 78px;
}
.report-a-problem-container .rap-page-main {
  display: flex;
  gap: 18px;
  padding: 30px;
}
.report-a-problem-container .rap-page-main .rap-page-left {
  width: 75%;
}
.report-a-problem-container .rap-page-main .rap-page-sidebar {
  width: 25%;
}
.report-a-problem-container .rap-page-main .rap-step-options {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -10px 0;
  width: calc(100% + 20px);
  max-width: calc(100% + 20px);
}
.report-a-problem-container .rap-page-main .rap-step-warning-display-area {
  display: none;
  padding: 40px 60px 40px 0;
}
.report-a-problem-container .rap-page-main .rap-step-warning-display-area.rap-step-warning-is-warning {
  background: #c92274;
  border-radius: 26px;
  padding: 40px;
  margin: 30px 0;
  color: #fff;
  font-size: 24px;
}
.report-a-problem-container .rap-page-main .rap-step-option {
  width: calc(20% - 20px);
  background-color: var(--rap-primary-colour);
  border-radius: 36px;
  margin: 10px 10px 40px;
  position: relative;
  cursor: pointer;
  min-height: 136px;
}
.report-a-problem-container .rap-page-main .rap-step-option .rap-step-option-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: none;
  width: 98px;
  height: 98px;
  border: 7px solid #fff;
  border-radius: 50%;
  background-color: var(--rap-primary-colour);
  margin-top: -30px;
  background-size: 58%;
  background-repeat: no-repeat;
  background-position: center;
}
.report-a-problem-container .rap-page-main .rap-step-option .rap-step-option-icon img {
  width: 64%;
  height: 64%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.report-a-problem-container .rap-page-main .rap-step-option:hover, .report-a-problem-container .rap-page-main .rap-step-option.active {
  background-color: var(--rap-secondary-colour);
}
.report-a-problem-container .rap-page-main .rap-step-option:hover .rap-step-option-icon, .report-a-problem-container .rap-page-main .rap-step-option.active .rap-step-option-icon {
  background-color: var(--rap-secondary-colour);
  color: #fff;
}
.report-a-problem-container .rap-page-main .rap-step-option:hover .rap-step-option-name, .report-a-problem-container .rap-page-main .rap-step-option.active .rap-step-option-name {
  color: #fff;
}
.report-a-problem-container .rap-page-main .rap-step-option.rso-has-icon {
  min-height: 190px;
}
.report-a-problem-container .rap-page-main .rap-step-option.rso-has-icon .rap-step-option-icon {
  display: block;
}
.report-a-problem-container .rap-page-main .rap-step-option .rap-step-option-warning {
  display: none !important;
}
.report-a-problem-container .rap-page-main .rap-step-option span {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  width: calc(100% - 30px);
  line-height: 1.2;
}
.report-a-problem-container .rap-page-sidebar-container {
  background-color: #fff;
  border-radius: 36px;
  padding: 30px 22px;
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  position: sticky;
  top: 30px;
}
.report-a-problem-container .rap-page-sidebar-container .rap-page-sidebar-contents {
  min-height: 192px;
}
.report-a-problem-container .rap-page-sidebar-container .rap-sidebar-option-name {
  display: block;
  font-weight: bold;
}
.report-a-problem-container .rap-page-sidebar-container .rap-page-sidebar-btn {
  font-size: 17px;
  background-color: #c4bdcb;
  padding: 0.8em 2.4em;
  border-radius: 99px;
  text-decoration: none !important;
  font-weight: 900;
  letter-spacing: normal;
  color: #fff;
  color: #31294d;
  cursor: pointer;
  border-radius: 27px/50%;
  display: inline-block;
}
.report-a-problem-container .rap-page-sidebar-container .rap-page-sidebar-btn.rap-page-submit-btn {
  background-color: #3e388d;
  width: 100%;
  text-align: center;
  color: #fff;
}
.report-a-problem-container .rap-page-sidebar-container .rap-page-sidebar-btn.active {
  background-color: var(--rap-primary-colour);
  color: #fff;
}
.report-a-problem-container .rap-page-back-button {
  width: 44px;
  height: 44px;
  border: 4px solid #fff;
  background-color: var(--rap-secondary-colour);
  cursor: pointer;
  display: inline-block;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}
.report-a-problem-container .rap-page-back-button:hover {
  background-color: var(--rap-primary-colour);
}
.report-a-problem-container .rap-page-back-button img {
  max-width: 21px;
  height: auto;
}
.report-a-problem-container .rap-page[data-page-id="1"] .rap-page-back {
  display: none;
}
.report-a-problem-container .rap-page[data-page-id="1"].warning-is-active .rap-page-back {
  display: block;
}
.report-a-problem-container .rap-form-element {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.report-a-problem-container .rap-form-element span {
  width: 185px;
  padding-right: 15px;
}
.report-a-problem-container .rap-form-element input[type=text],
.report-a-problem-container .rap-form-element input[type=email],
.report-a-problem-container .rap-form-element input[type=tel],
.report-a-problem-container .rap-form-element textarea {
  width: calc(100% - 200px);
  border-radius: 5px;
  background: #fff;
  border: none !important;
  outline: none !important;
  padding: 15px;
}
.report-a-problem-container .rap-form-element-checkboxes {
  display: block;
  margin-bottom: 30px;
}
.report-a-problem-container .rap-form-element-checkboxes label {
  display: inline-block;
  /* float: left; */
  clear: both;
}
.report-a-problem-container .rap-form-element-checkboxes:after {
  content: " ";
  clear: both;
  width: 100%;
  height: 1px;
  display: block;
}
.report-a-problem-container .wpforms-submit-container button {
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0px !important;
  width: 0px !important;
}

@media (max-width: 1080px) {
  .rap-step-option {
    width: calc(33% - 20px) !important;
  }
  .rap-page-sidebar-btn {
    padding: 18px 28px !important;
  }
}
#rap-small-screens-visible {
  display: none;
}

@media (max-width: 940px) {
  #rap-small-screens-visible {
    display: block;
  }
  .report-a-problem-container .rap-page-main {
    flex-direction: column;
  }
  .report-a-problem-container .rap-page-main .rap-page-left {
    width: 100%;
    order: 2;
  }
  .report-a-problem-container .rap-page-main .rap-page-sidebar {
    width: 100%;
    order: 1;
  }
  .report-a-problem-container .rap-page:not(.warning-is-active) .rap-page-sidebar-container .rap-page-sidebar-btn:not(.rap-page-submit-btn) {
    display: none !important;
  }
  .report-a-problem-container .rap-page {
    padding-bottom: 100px;
    position: relative;
  }
  .report-a-problem-container .rap-page-sidebar-container {
    position: static;
    padding: 20px 22px;
  }
  .report-a-problem-container .rap-page.warning-is-active.warning-can-be-passed .rap-page-sidebar-container {
    padding: 20px 22px 40px;
  }
  .report-a-problem-container .rap-page.warning-is-active.warning-can-be-passed .rap-page-sidebar-container .rap-page-sidebar-contents {
    padding: 0 0 30px;
  }
  .report-a-problem-container .rap-page-sidebar-container .rap-page-sidebar-btn.rap-page-submit-btn {
    position: absolute;
    bottom: 38px;
    width: auto;
    min-width: 200px;
    left: 37px;
  }
  .report-a-problem-container .rap-page-sidebar-container .rap-page-sidebar-contents {
    min-height: 0;
  }
  .report-a-problem-container .rap-page-sidebar-container .rap-page-sidebar-contents p {
    margin-bottom: 0;
  }
  .report-a-problem-container .rap-page-sidebar-container .rap-sidebar-option-name {
    display: inline-block;
    margin-right: 6px;
  }
}
@media (max-width: 700px) {
  .report-a-problem-container .report-a-problem-page-list .report-a-problem-page-button-text {
    font-size: 14px;
  }
  .report-a-problem-container .report-a-problem-page-list {
    margin: 0;
  }
  .report-a-problem-container .report-a-problem-page-list .report-a-problem-page-button {
    flex: 0 0 74px;
  }
}
@media (max-width: 525px) {
  .rap-step-option {
    width: calc(50% - 20px) !important;
  }
}
@media (max-width: 460px) {
  .report-a-problem-container .report-a-problem-page-list:after {
    display: none;
  }
}
@media (max-width: 386px) {
  .rap-step-option {
    width: calc(100% - 20px) !important;
  }
}