a.btn_compliance {
  display: flex;
  max-width: 300px;
  border: 2px solid #00479D;
  align-items: center;
  margin: 0 auto;
  padding: 1.3rem 2rem;
  color:#00479D;
  background: #fff;
  transition: 0.3s;
  text-decoration: none;
  font-size:16px;
}
a.btn_compliance:hover {
  background-color: #00479D;
}
a.btn_compliance:hover .compliance__text {
  color:#FFF;
}
a.btn_compliance .compliance__text {
  display: block;
  flex-grow: 1;
  color: #00479D;
  text-align: center;
  position: relative;
  padding-right:5px;
}
a.btn_compliance .compliance__text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  border-top: 1px solid #00479D;
  border-right: 1px solid #00479D;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  transition: 0.3s;
}
a.btn_compliance:hover .compliance__text::after {
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}
@media (max-width: 1200px) {
  a.btn_compliance .compliance__text {
    padding-right: 20px;
  }
  a.btn_compliance .compliance__text::after {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 736px) {
  a.btn_compliance .compliance__text {
    padding-right: 20px;
  }
  a.btn_compliance .compliance__text::after {
    width: 10px;
    height: 10px;
  }
}



table.formset th,td {
	border-block-end: 1px dashed #ccc;
	writing-mode: horizontal-tb;
}

.error {
	color:#F00;font-size:0.8em;line-height:1.2em;
}