.check-box {
  margin-top: 6px;
  display: inline-block;
  vertical-align: middle; }
  .check-box .check-box-cover {
    width: 14px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 3px 0; }
    .check-box .check-box-cover label {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 14px;
      height: 14px;
      background-color: #3497ff;
      border-radius: 3px;
      border: none;
      box-sizing: border-box;
      z-index: 0;
      cursor: pointer; }
      .check-box .check-box-cover label::after {
        position: absolute;
        top: 3px;
        left: 3px;
        width: 7px;
        height: 3px;
        content: '';
        background: transparent;
        border: 2px solid #fff;
        border-top: none;
        border-right: none;
        box-shadow: -1px 1px 1px rgba(100, 100, 100, 0.4);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0; }
    .check-box .check-box-cover:hover::after {
      opacity: 0.5; }
    .check-box .check-box-cover input[type=checkbox]:checked + label.cover-checked:after {
      opacity: 1; }
  .check-box.disabled {
    position: relative; }
    .check-box.disabled .check-box-cover label {
      background-color: #fff;
      border: 1px solid #bdbdbd; }
      .check-box.disabled .check-box-cover label::after {
        left: 2px;
        border: 2px solid #bdbdbd;
        border-top: none;
        border-right: none;
        box-shadow: none; }
  .check-box.disabled:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-color: transparent; }

.section-form-fieldset {
  width: 100%;
  margin-bottom: 14px; }
  .section-form-fieldset-half {
    display: inline-block;
    width: 200px; }
  .section-form-fieldset-title {
    margin-bottom: 4px; }
    .section-form-fieldset-title, .section-form-fieldset-title label {
      display: block;
      color: #767676;
      margin-bottom: 8px; }

.section-form input[type="text"],
.section-form input[type="email"],
.section-form input[type="password"] {
  width: 100%;
  height: 30px;
  margin-top: 6px;
  padding: 0 10px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 2px;
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-size: 14px; }

.checkbox_radio-row {
  margin: 4px 0; }
  .checkbox_radio-row input {
    display: inline-block;
    vertical-align: middle; }
  .checkbox_radio-row label,
  .checkbox_radio-row label.bold {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    font-weight: normal !important; }

/* TO BE MOVED INTO OVVERRIDES -> SELECT STYLESHEET */
.Select-control {
  margin-top: -2px;
  border-radius: 2px;
  border: 1px solid #bdbdbd;
  outline: none !important;
  /* Solution for Chrome focus hightlight */
  box-shadow: none !important;
  font-weight: normal; }
  .Select-control .Select-placeholder {
    line-height: 30px; }

.simple-section {
  width: 520px;
  padding: 0 40px 38px 40px;
  border-radius: 3px;
  font-family: 'Proxima Nova', Arial, sans-serif;
  color: #333; }
  .simple-section-header {
    display: block;
    width: 100%;
    margin-bottom: 20px; }
    .simple-section-header-title {
      color: #222;
      font-size: 20px;
      font-weight: bold;
      text-decoration: none; }
      .simple-section-header-title::before {
        width: 8px;
        margin: 0 8px 2px 0;
        padding: 0;
        font-size: 6px;
        transition: all 0.2s ease; }
      .simple-section-header-title.header-closed::before {
        -moz-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg); }
  .simple-section .standard-size-header {
    color: #767676;
    height: 24px; }
  .simple-section.section-closed {
    padding-bottom: 0; }
    .simple-section.section-closed .simple-section-content {
      display: none; }
    .simple-section.section-closed .simple-section-header-title::before {
      -moz-transform: rotate(-90deg);
      -webkit-transform: rotate(-90deg);
      -o-transform: rotate(-90deg);
      transform: rotate(-90deg); }
  .simple-section .info {
    margin-bottom: 24px;
    font-size: 12px;
    color: #767676; }
    .simple-section .info-icon {
      display: inline-block;
      width: 16px;
      height: 16px;
      margin-right: 12px;
      border: 1px solid #767676;
      border-radius: 50%;
      text-align: center;
      line-height: 16px; }
