@font-face {
  font-family: "roboto-bold";
  src: url(/public/fonts/Roboto/Roboto-medium.ttf) format("opentype"); }

@font-face {
  font-family: "roboto";
  src: url(/public/fonts/Roboto/Roboto-Regular.ttf) format("opentype"); }

@font-face {
  font-family: "roboto-bold";
  src: url(/public/fonts/Roboto/Roboto-medium.ttf) format("opentype"); }

@font-face {
  font-family: "roboto";
  src: url(/public/fonts/Roboto/Roboto-Regular.ttf) format("opentype"); }

/* Customize the label (the custom-radio) */
.custom-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* Hide the browser's default radio button */
.custom-radio__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom radio button */
.custom-radio__check-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 50%; }

/* On mouse-over, add a grey background color */
/* When the radio button is checked, add a blue background */
.custom-radio .custom-radio__input:checked ~ .custom-radio__check-mark {
  background-color: #006BC2;
  border: 0; }

/* Create the indicator (the dot/circle - hidden when not checked) */
.custom-radio__check-mark:after {
  content: '';
  position: absolute;
  display: none; }

/* Show the indicator (dot/circle) when checked */
.custom-radio__input:checked ~ .custom-radio__check-mark:after {
  display: block; }

/* Style the indicator (dot/circle) */
.custom-radio__check-mark:after {
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
  transform: translate(5px, 5px); }
