/*-------------------------------------
   input text
-------------------------------------*/
.p-input {
  vertical-align: middle;
  margin-top: 2px;
  margin-bottom: 2px;
  display: inline-block;
  position: relative;
  background: #f9f9f9;
  border: 1px solid #ccc;
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 2px;
  margin-right: 2px;
  border-radius: 4px;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  width: 100%;
  transition: 0.5s; }
  .p-input:focus {
    border-color: #0096ff; }

/*-------------------------------------
   textarea
-------------------------------------*/
.p-textarea {
  vertical-align: middle;
  margin-top: 2px;
  margin-bottom: 2px;
  display: inline-block;
  position: relative;
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 2px;
  margin-right: 2px;
  border-radius: 4px;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  width: 100%;
  transition: 0.5s; }
  .p-textarea:focus {
    border-color: #0096ff; }

/*-------------------------------------
   radio
-------------------------------------*/
.p-radio {
  vertical-align: middle;
  margin-top: 2px;
  margin-bottom: 2px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 20px;
  padding-left: 30px; }
  .p-radio input {
    position: absolute;
    visibility: hidden; }
  .p-radio__checkmark {
    position: absolute;
    top: 6px;
    left: 2px;
    transition: 0.5s;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
    width: 22px;
    height: 22px;
    line-height: 22px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    display: inline-block;
    vertical-align: middle; }
    .p-radio__checkmark::after {
      opacity: 0;
      position: absolute;
      content: "";
      display: block;
      font-family: FontAwesome;
      color: #0096ff; }
  .p-radio input[type=radio]:checked + .p-radio__checkmark:after {
    opacity: 1; }
  .p-radio input[type=radio]:focus + .p-radio__checkmark {
    border-color: #0096ff; }
  .p-radio__checkmark {
    border-radius: 22px; }
    .p-radio__checkmark::after {
      content: "";
      width: 11px;
      height: 11px;
      border-radius: 11px;
      background: #0096ff;
      top: 4.5px;
      left: 5.5px; }

/*-------------------------------------
   checkbox
-------------------------------------*/
.p-checkbox {
  vertical-align: middle;
  margin-top: 2px;
  margin-bottom: 2px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 20px;
  padding-left: 30px; }
  .p-checkbox input {
    position: absolute;
    visibility: hidden; }
  .p-checkbox__checkmark {
    position: absolute;
    top: 6px;
    left: 2px;
    transition: 0.5s;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
    width: 22px;
    height: 22px;
    line-height: 22px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    display: inline-block;
    vertical-align: middle; }
    .p-checkbox__checkmark::after {
      opacity: 0;
      position: absolute;
      content: "";
      display: block;
      font-family: FontAwesome;
      color: #0096ff; }
  .p-checkbox input[type=checkbox]:checked + .p-checkbox__checkmark:after {
    opacity: 1; }
  .p-checkbox input[type=checkbox]:focus + .p-checkbox__checkmark {
    border-color: #0096ff; }
  .p-checkbox__checkmark {
    border-radius: 4px; }
    .p-checkbox__checkmark::after {
      content: '\f00c';
      font-size: 18px;
      top: 0px;
      left: 1px; }

/*-------------------------------------
   accordion
-------------------------------------*/
.p-form-accordion {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding-left: 10px;
  margin-bottom: 5px; }
  .p-form-accordion__title {
    width: 100%;
    margin: 0; }
  .p-form-accordion__content {
    padding: 0 30px 20px 30px; }

/*-------------------------------------
   button
-------------------------------------*/
.p-button {
  vertical-align: middle;
  margin-top: 2px;
  margin-bottom: 2px;
  display: inline-block;
  position: relative;
  border-radius: 4px;
  padding: 15px 40px;
  font-size: 1.2em;
  cursor: pointer;
  transition: 0.5s; }
  .p-button--default {
    background: #eee;
    color: #000; }
    .p-button--default:hover, .p-button--default:focus {
      background: #d5d5d5; }
    .p-button--default:active {
      background: #bbbbbb; }
  .p-button--primary {
    background: #16529B;
    color: #fff; }
    .p-button--primary:hover, .p-button--primary:focus {
      background: #3583e2; }
    .p-button--primary:active {
      background: #103a6e; }
    .p-button--primary:disabled:hover, .p-button--primary:disabled:focus {
      background: #16529B;
      color: #fff; }
    .p-button--primary:disabled:active {
      background: #16529B;
      color: #fff; }
  .p-button:disabled {
    opacity: .5;
    cursor: defalt; }

/*-------------------------------------
   error
-------------------------------------*/
.p-form-error {
  font-size: .9em;
  color: red;
  display: none; }
