/*Setting*/
/*Containers*/
.anchorMI__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #dadada;
  padding: 15px;
  margin: 15px;
}
/*Elements*/
.anchorMI__item {
  flex: 0 0 100%;
  padding: 5px;
}
@media (min-width: 768px) {
  .anchorMI__item {
    flex: 0 0 50%;
  }
}
.anchorMI__item a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.anchorMI__item a img {
  width: 82px;
  height: 50px;
}
.anchorMI__item a h3 {
  margin-left: 10px;
  color: #1e52d5;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: normal;
}
.anchorMI__error {
  padding: 10px;
  background-color: #ff0000;
  color: white;
  width: 100%;
  text-align: center;
}
