#postbox-container-2 {
  .inside,
  .m_field {
    label,
    legend {
      width      : 25%;
      font-weight: 600;
      color      : $darkblue;
    }

    input[type="text"] {
      width: calc(100% - 26%);
    }

    input[type="date"],
    input[type="text"] {
      min-height   : 40px;
      border       : 1px solid $mediumgrey;
      margin-top   : 10px;
      margin-bottom: 20px;
    }

    .m_editor__area,
    textarea {
      border: 1px solid $mediumgrey;
    }

    .m_editor {
      margin-top   : 10px;
      margin-bottom: 30px;
    }
  }

  .m_field {
    width    : 100%;
    display  : flex;
    flex-wrap: wrap;

    + .m_field {
      margin-top: 20px;
    }
  }

  > div label {
    font-weight: 400;
  }
}


.m_link, .m_link_repeater {
  padding-bottom:50px;
  display:flex;
  align-items: center;
  button {
    height: 40px;
  }
  .m_link-container {
    display: inline-block;
    padding:15px;
    margin-left:20px;
    border-radius: 3px;
    box-shadow: 0 2px 4px 0 rgba(0, 67, 175, 0.1);
    background-color: #ffffff;
    border: 1px solid #ffffff;
    outline: none;
    font-size: 16px;

    .m_icons {
      width: 30px;
      color:$darkblue;
      cursor: pointer;
    }
    .m_icon_edit { 
      margin-left: 10px;
    }
    .m_icons:hover {
      color: $red;
    }
  }
  .m_link-container.hidden {
    display:none;
  }
}