.wrapper {
  box-sizing: border-box;
  font-family: sans-serif;
  margin: 0 auto;
  padding: 16px;
  width: 100%;
}

.header-inform,
.content-inform {
  display: flex;
}

.header-inform {
	justify-content: center;
	align-items: center;
}

.content-inform {
  flex-wrap: wrap;
}

.content-inform .content__title,
.content-inform .content__description {
  text-align: center;
}

.content-inform .content__title {
  color: #434343;
  flex: 0 0 100%;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.content-inform .content__description {
  color: #434343;
  flex: 1 0 100%;
  font-size: 14px;
  line-height: 1.5;
  justify-content: center;
}

.header-inform .header__logoWarning,
.header-inform .header__logoSuccess {
  width:  40px;
  height: 40px;
  border-radius: 100%;
  position: relative;
  margin-top:     48px;
  margin-bottom:  24px;
}

.header-inform .header__logoSuccess {
  background-color: #00A651;
}

.header-inform .header__logoWarning {
  background-color: #FFC412;
}

.logo--success {
  width:  24px;
  height: 24px;
}

.logo--warning {
  width:  22px;
  height: 19px;
}

.logo--success,
.logo--warning {
  position: absolute;
  margin: auto;
  left:   0;
  right:  0;
  top:    0;
  bottom: 0;
}

.content-inform .content__edit {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  margin-top: 15px;
}

.content-inform .content__edit .btn--primary {
  margin-bottom: 8px;
}

.content-inform .content__edit > a {
  flex: 0 0 100%;
  justify-content: space-between
}

.content-inform .content__remove {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 15px;
}

.content-inform .content__remove > a {
  flex: 0 0 48%;
  margin-bottom: 8px;
}

.btn {
  border-radius: 4px;
  box-sizing: border-box;
  padding: 16px !important;
  text-align: center;
  width: 100%;
  text-decoration: none;
}

.btn--primary {
  background-color: #0770CD;
  color: white;
}
.btn--primary:hover {
  color: white !important;
}

.btn--secondary {
  background-color: #F6F6F6;
  color: #0770CD;
}
.btn--secondary:hover {
  color: #0770CD !important;
}

.content__attention ul{
  list-style: disc;
  padding-left: 25px;
}

@media only screen and (min-width : 1224px) {
  .wrapper {
    height: 272px;
  } 
}