body{
  padding:0;
  margin:0;
  font-family: $fontBody;
  font-size: 13.5px;
}

/**
* Content
*/

h1,h2,h3,h4,h5{
 font-family: $fontHeading;
 font-weight: 500;
 line-height: 1.1em;
}

h1{
  font-size: 25px;
}

h2{
  font-size: 20px;
}

h3{
  font-size: 15px;
}

h4{
  font-size: 13px;
}

p{
  line-height: 1.5em;
}

/**
* Links
*/

.link, .link:visited{
   color: $clPrimary;
}

.link:hover{
  color: lighten($clPrimary, 10);
}

.link:active{
   color: $clPrimaryAlt;
}


/**
* Buttons
*/

.btn{
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  font-family: $fontHeading;
  font-size: 0.96em;
  text-transform: uppercase;
  text-decoration: none;
  height: 35px;
  padding: 0 45px 0 30px;
  box-sizing: border-box;
  line-height: 35px;
  box-shadow: 0 2px 2px rgba(0,0,0,0.1);
  background-image: $arrowRightDarkUrl;
  background-position: center right 10px;
  background-repeat: no-repeat;
  margin: 10px;
  background-color: $clGrey;
  color: $clDark;
  border-width: 0;

  &:hover{
    background-color: lighten($clGrey, 5);
    box-shadow: 0 3px 3px rgba(0,0,0,0.1);
  }

  &.primary{
    background-color: $clPrimary;
    color: $clWhite;
    background-image: $arrowRightWhite40Url;
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);

    &:hover{
      background-color: lighten($clPrimary, 5);
    }

    &.plus{
      background-image: $iconPlusUrl;
      background-size: 12px;
    }

  }

  &.plus{
    background-image: $iconPlusGreyUrl;
    background-size: 12px;
  }

  &.white{
    background-color: $clWhite;
    &:hover{
      background-color: $clWhite;
      opacity: 0.9;
    }
  }

  &.blank{
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    padding: 0 30px;

    &:hover{
      background-color: transparent;
      opacity: 0.9;
    }

    &.warning:hover{
      color: $clSecondary;
      opacity: 1;
    }
  }
}

/**
* Forms
*/

.label{
  color: $clPrimary;
  text-transform: uppercase;
  display: block;
  font-size: 0.96em;
  font-family: $fontHeading;
  font-weight: 500;
  margin-bottom: 10px;
}

input[type=text], textarea{
  border: 1px solid $clGreyTint;
  border-left-width: 2px;
  padding: 6px 10px;
  border-radius: 2px;
  font-family: $fontBody;
  min-width: 200px;
  margin-bottom: 15px;
  transition: border $transition;

  &:focus{
    border-left: 2px solid $clPrimary;
  }
}


input, textarea, select{
  outline-color: $clPrimary;
}


textarea{
  min-width: 400px;
  min-height: 200px;
}

/* Page layout */

.content{
  position: relative;
  max-width: $maxPageWidth;
  margin: auto;
  padding: $contentPadding;
  box-sizing: border-box;

  .text-body{
    max-width: $maxTextBodyWidth;
    margin: auto;

    p{
      max-width: 500px;
    }
  }

}

&.bg__workspace{
  padding-top: 30px;
}