/* Table of Contents
==================================================

	#Imports
	#General
	#Preview
    #Form

   ==================================================
*/
/* ==========================================================================
#Imports
========================================================================== */
/* ==========================================================================
#General
========================================================================== */
body {
  font-family: Arial, Helvetica, sans-serif; }

.container {
  max-width: calc(100% - 30px);
  margin: 0 auto; }
  @media (min-width: 24em) {
    .container {
      max-width: 80%;
      margin: 0 auto; } }

.text-center {
  text-align: center; }

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
  .btn-primary:hover {
    background-color: #286090;
    border-color: #204d74; }
  .btn-primary:focus {
    background-color: #286090;
    border-color: #122b40; }
  .btn-primary:active {
    background-image: none; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:hover {
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-default:focus {
    background-color: #e6e6e6;
    border-color: #8c8c8c; }
  .btn-default:active {
    background-image: none; }

.btn-copy {
  margin-top: 30px; }

/* ==========================================================================
#Preview
========================================================================== */
#preview {
  margin-top: 50px; }

#preview-signature {
  border: 1px dashed #000;
  padding: 50px; }

/* ==========================================================================
#Form
========================================================================== */
#formDetails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 48em) {
    #formDetails {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.inputGroup {
  width: 100%;
  margin-bottom: 15px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #f5f5f5; }
  @media (min-width: 48em) {
    .inputGroup {
      width: 50%; } }
  @media (min-width: 56em) {
    .inputGroup {
      width: 24%; } }
  .inputGroup label {
    display: block;
    margin-bottom: 10px; }
  .inputGroup input, .inputGroup select {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .inputGroup select {
    text-transform: none; }

.actions {
  width: 100%; }
