.editor_list_wrap {
  border: solid #1a4f8b 2px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.editor_list_wrap .editor_list_title {
  background: #1a4f8b;
  color: #fff;
  font-weight: bold;
  padding: 5px 20px;
  display: inline-block;
  border-radius: 0 0 10px 0;
  position: relative;
  font-size: 1.8rem;
}
.editor_list_wrap .editor_list_title::before {
  content: "\f14a";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  margin-right: 5px;
}
.editor_list_wrap .editor_list {
  padding: 20px;
  counter-reset: num;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.editor_list_wrap .editor_list li {
  counter-increment: num;
  list-style-type: none;
  position: relative;
  padding-left: 35px;
}
.editor_list_wrap .editor_list li::before {
  content: counter(num);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  background: #1a4f8b;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  line-height: 28px;
  text-align: center;
}

.editor_flow_list {
  counter-reset: num_1;
  margin-bottom: 20px;
}
.editor_flow_list .wp-block-columns {
  flex-wrap: nowrap !important;
}
.editor_flow_list .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
  flex-basis: unset !important;
}

.editor_flow_item {
  counter-increment: num_1;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .editor_flow_item {
    gap: 15px;
  }
}
.editor_flow_item .wp-block-group__inner-container {
  display: flex;
  flex-direction: row;
}
.editor_flow_item .editor_flow_left {
  width: 80px;
  position: relative;
  flex-basis: unset;
}
@media screen and (max-width: 767px) {
  .editor_flow_item .editor_flow_left {
    width: 60px;
  }
}
.editor_flow_item .editor_flow_left::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a4f8b1a;
  width: 10px;
  height: 100%;
}
.editor_flow_item .editor_flow_right {
  width: calc(100% - 80px);
}
@media screen and (max-width: 767px) {
  .editor_flow_item .editor_flow_right {
    width: calc(100% - 60px);
  }
}
.editor_flow_item .editor_flow_num {
  background: #1a4f8b;
  color: #fff;
  font-family: "Oswald", sans-serif;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2 !important;
  border-radius: 40px;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .editor_flow_item .editor_flow_num {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }
}
.editor_flow_item .editor_flow_num::after {
  content: counter(num_1);
  display: block;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .editor_flow_item .editor_flow_num::after {
    font-size: 2.2rem;
  }
}
.editor_flow_item .editor_flow_title {
  margin: 0 0 20px 0 !important;
  border-left: none !important;
  padding: 0 !important;
  color: #1a4f8b;
}
.editor_flow_item:last-child .editor_flow_left::before {
  top: 0;
}

.editor_note {
  background: #d645411a;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.editor_note .editor_note_title {
  background: #d64541;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  padding: 10px;
}
.editor_note .editor_note_list {
  padding: 20px 20px 20px 40px;
}