﻿/* SAM 2015-01-08 DEV-3182 Needed some grids to improve the form layouts for other phrases */
.grid {
    width: auto;
}

[class*='col-'] {
    float: left;
}

.col-2-3 {
    width: 66.66%;
}

.col-1-3 {
    width: 33.33%;
}

.col-1-2 {
    width: 50%;
}

.col-1-4 {
    width: 25%;
}

.col-1-8 {
    width: 12.5%;
}

.col-1-1 {
    width: 100%;
}

.contentleft {
    text-align: left;
}

.contentright {
    text-align: right;
}

.grid:after {
    content: "";
    display: table;
    clear: both;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

[class*='col-'] {
    padding-right: 20px;
}

    [class*='col-']:last-of-type {
        padding-right: 0;
    }
