@charset "UTF-8";
.custom_list {
  flex-wrap: wrap;
  display: flex;
  justify-content: left;
  margin-bottom: 48px;
}
@media screen and (min-width: 64em) {
  .custom_list {
    margin-bottom: 60px;
  }
}
.custom_list ul {
  min-width: 220px;
  padding: 0;
  list-style: none;
  margin: 10px auto;
}
@media screen and (min-width: 36em) {
  .custom_list ul {
    margin: 10px;
  }
}
.custom_list ul li {
  font-size: 16px;
  color: #04123C;
  padding-left: 30px;
  position: relative;
  vertical-align: top;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 10px;
}
.custom_list ul li:before {
  display: inline-block;
  position: absolute;
  width: 20px;
  margin-left: -22px;
  font-weight: 700;
}
.custom_list ul li a {
  text-decoration: underline;
  font-weight: 400;
}
.custom_list ul li p {
  margin: 0;
  display: inline-block;
}
.custom_list--dot_bullet_blue li:before {
  font-size: 27px;
  color: #285bac;
  content: "•";
}
.custom_list--dot_bullet_red li:before {
  font-size: 27px;
  color: #b70c2a;
  content: "•";
}
.custom_list--check_bullet li:before {
  content: "✓";
  font-weight: bold;
  font-size: 15px;
  color: #4ea204;
}
.custom_list--cross_bullet li:before {
  content: "×";
  font-weight: bold;
  font-size: 25px;
  color: #b70c2a;
}
.custom_list--numb_bullet {
  counter-reset: list-number;
  min-width: 220px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.custom_list--numb_bullet li {
  counter-increment: list-number;
  font-size: 16px;
  color: #333;
  padding-left: 30px;
  position: relative;
  vertical-align: top;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 10px;
  list-style: none;
}
.custom_list--numb_bullet li:before {
  content: counter(list-number);
  color: #FFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #285bac;
  line-height: 24px;
  text-align: center;
  margin-right: 6px;
  margin-left: -30px;
  display: inline-block;
  position: absolute;
}
.custom_list--two_columns ul, .custom_list--two_columns ol {
  -moz-columns: 1;
       columns: 1;
}
@media screen and (min-width: 36em) {
  .custom_list--two_columns ul, .custom_list--two_columns ol {
    -moz-columns: 2;
         columns: 2;
  }
}
.custom_list--three_columns ul, .custom_list--three_columns ol {
  -moz-columns: 1;
       columns: 1;
}
@media screen and (min-width: 36em) {
  .custom_list--three_columns ul, .custom_list--three_columns ol {
    -moz-columns: 3;
         columns: 3;
  }
}
