.chaport-form .form-table {
  transition: opacity ease-out 0.2s;
  opacity: 0;
}

.chaport-form .form-table th {
  vertical-align: middle;
}

.chaport-status-box {
  background: #fff;
  border-left: 4px solid #fff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
  padding: 10px 20px;
  margin-right: 10px;
  max-width: 770px;
}

.chaport-status-box span {
  margin-left: 5px;
}

.chaport-status-ok {
  border-left-color: #46b450;
}

.chaport-status-error {
  border-left-color: #dc3232;
}

.chaport-status-warning {
  border-left-color: #f1da08;
}

.swith-chaport {
  background: #efefef;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  z-index: -1;
}

.btn {
  border: 1px solid #0085ba;
  display: inline-block;
  width: 134px;
  padding: 6px 14px;
  position: relative;
  text-align: center;
  transition: background 600ms ease, color 600ms ease;
  border-radius: 3px 0 0 3px;
}

.btn:last-child{
  border-radius: 0 3px 3px 0;
}

input[type='radio'].chaport-default {
  display: none;
}

input[type='radio'].chaport-default + label {
  cursor: pointer;
  min-width: 60px;
  color: #0085ba;
}

input[type='radio'].chaport-default + label:hover {
  background: none;
  color: #0099ba;
}

input[type='radio'].chaport-default + label:after {
  background: #0085ba;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  z-index: -1;
}

input[type='radio'].chaport-default.chaport-left + label {
  border-right: 0;
}

input[type='radio'].chaport-default.chaport-left + label:after {
  left: 100%;
}

input[type='radio'].chaport-default.chaport-right + label {
  margin-left: -5px;
}

input[type='radio'].chaport-default.chaport-right + label:after {
  left: -100%;
}

input[type='radio'].chaport-default:checked + label {
  cursor: default;
  color: #f3f3f3;
  transition: color 200ms;
}

input[type='radio'].chaport-default:checked + label:after {
  left: 0;
}

#chaport_app_installation_code_field, #chaport_app_id_field{
  padding: 10px;
  border-radius: 3px;
}