/**
 * Skew button
 */
.skew-btn {
    color: #333;
    background-color: rgba(255,255,255,0.85);
    background-image: linear-gradient(164deg, #f3f3f3 0%, #f8f8f8 49%, #ededed 100%);
    height: 50px;
    padding: 0 20px;
    line-height: 50px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 15px;
    font-weight: 200;
    display: inline-block;
    position: relative;
    transform: skew(3deg, 0deg);
    min-width: 240px;
    text-align: center;
    border: none;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.skew-btn i {
    transform: skew(-3deg, 0deg);
    font-style: normal;
    display: inline-block;
}
.skew-btn:before,
.skew-btn:after
{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.skew-btn:before {
    border-width: 0 1px 8px 180px;
    top: -8px;
    border-color: transparent transparent #e0e0e099 transparent;
    left: 0;
}
.skew-btn:after {
    border-width: 11px 220px 0 1px;
    bottom: -11px;
    border-color: #c6c6c699 transparent transparent transparent;
    right: 0;
}
.skew-btn:hover,
.skew-btn.active,
.skew-btn.orange
{
    background-image: linear-gradient(164deg, #e98024 0%, #f8a34b 49%, #f0bb51 100%);
    background-color: #f8a34b;
    color: #fff;
    text-decoration: none;
}
.skew-btn:hover:before,
.skew-btn.active:before,
.skew-btn.orange:before
{
    border-color: transparent transparent rgba(210, 117, 21, 0.85) transparent;
}
.skew-btn:hover:after,
.skew-btn.active:after,
.skew-btn.orange:after
{
    border-color: rgba(210, 117, 21, 0.85) transparent transparent transparent;
}
.skew-btn > .fa {
    font-size: 1.25em;
    margin: 0 10px;
}
.skew-btn.sm {
    min-width: 180px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
}
.skew-btn.sm:before {
    border-width: 0 1px 8px 140px;
}
.skew-btn.sm:after {
    border-width: 11px 150px 0 1px;
}

/**
 * Fix on homepage
 */
#calculate-cost .skew-btn {
    margin: 55px auto;
    min-width: 290px;
}
#sketches .calculate-cost .skew-btn
{
    margin: 70px auto 0;
    z-index: 100;
}
.about .calculate-cost .skew-btn
{
    z-index: 100;
}
#about .about .calculate-cost {
    text-align: center;
}
#about .about .calculate-cost > div {
    left: 50%;
    margin: 0 0 0 -85px;
}