@charset "utf-8";

input[type='radio']{-webkit-appearance: none; -moz-appearance: none; appearance: none; width: 15px; height: 15px; border: 1px solid #cbd5e1; border-radius: 50%; outline: none; cursor: pointer; margin-right:3px;}
input[type='radio']:checked{background-color: #fff; border: 5px solid #2D73E3;}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border-radius: 2px;
  cursor: pointer;
  height: 15px;
  width: 15px;
  outline: 0;
  position:relative;
  margin-right:3px;
}
input[type="checkbox"]:after {
	content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

input[type="checkbox"]:checked {
  background: #093d88; border: 1px solid #093d88;
}
input[type="checkbox"]:checked::after {
  display: block;
}

.f_base{accent-color:#2D73E3;}

.st-pr-btm p{color:#093d88 !important;}
.st-submit button{background-color:#093d88 !important;}