/* Need to check with designer */
/* Need to check with designer */
:host {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

:host(.radio-container) {
  display: inline;
  position: relative;
}

/* Focus event occurs on the root element */
:host(:focus) {
  outline: none;
}
:host(:focus) input[type=radio] + label::before {
  border: 1px solid transparent;
  box-shadow: 0 0 0 2px #2c5cc5;
  border-color: #081824;
}
:host(:focus) input[type=radio][disabled] + label::before {
  box-shadow: none;
  border: 1px solid #dadfe3;
}

.label-field {
  font-size: 12px;
  color: #475867;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  padding-left: 28px;
  font-weight: 400;
}

/* Hover event occurs on the root element */
:host(:hover) input[type=radio] + label::before {
  box-shadow: 0 0 0 5px #ebeff3;
  border-color: #081824;
}
:host(:hover) input[type=radio][disabled] + label {
  cursor: not-allowed;
}
:host(:hover) input[type=radio][disabled] + label::before {
  box-shadow: none;
  border: 1px solid #dadfe3;
}

input[type=radio] {
  display: none;
}
input[type=radio] + label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  max-width: auto;
  margin-bottom: 0;
  vertical-align: middle;
  font-size: 12px;
  color: #12344d;
  font-weight: 500;
}
input[type=radio] + label .text {
  padding-left: 27px;
}
input[type=radio] + label::before, input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  box-sizing: border-box;
}
input[type=radio] + label::before {
  left: 0;
  border: 1px solid #cfd7df;
  border-radius: 50px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #fff;
  transition: all 0.3s ease;
}
input[type=radio] + label::after {
  left: 3px;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  box-sizing: border-box;
}
input[type=radio]:checked + label::before {
  background: #fff;
  border-color: #2c5cc5;
  box-shadow: none;
}
input[type=radio]:checked + label::after {
  border-radius: 50%;
  background-color: #2c5cc5;
  opacity: 1;
  top: 7px;
}
input[type=radio]:checked:focus + label::before {
  border-color: #3868d3;
  box-shadow: 0 0 4px 1px rgba(44, 92, 197, 0.6);
}
input[type=radio]:checked:focus + label::after {
  background-color: #3868d3;
}
input[type=radio][disabled] + label {
  color: #92a2b1;
}
input[type=radio][disabled] + label .label-field {
  color: #92a2b1;
}
input[type=radio][disabled] + label::before {
  border-color: #dadfe3;
  background-color: #ebeff3;
}
input[type=radio][disabled] + label::after {
  border-color: #ebeff3;
  background-color: #dadfe3;
}
input[type=radio][disabled]:checked + label {
  color: #92a2b1;
}