/* Table of Contents
 *
 * 1. Common Classes
 * 2. Formatting
 * 3. Forms
 * 4. Base Layout
 * 5. Home Page
 * 6. Category Page
 * 7. Company Page
 *
 */

* {
    margin: 0;
    padding: 0;
}

/************************
 * 1. Common Classes
 ************************/

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    display: block;
    height: 0;
    clear: both;
}

.clearfix:after {
    display: block;
    content: '';
    height: 0;
    clear: both;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.hide {
    display: none;
}

.block {
    display: block;
}

.inline {
    display: inline-block;
}

.table {
    display: table;
    width: 100%;
}

.row {
    display: table-row;
}

.cell {
    display: table-cell;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.top {
    vertical-align: top;
}

.middle {
    vertical-align: middle;
}

.bottom {
    vertical-align: bottom;
}

.qtr {
    width: 25%;
}

.third {
    width: 33.3333%;
}

.half {
    width: 50%;
}

.full {
    width: 100%;
}

.bbox {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

/************************
 * 2. Formatting
 ************************/

body {
    font-family: "aktiv-grotesk-std", sans-serif;
    font-size: 12pt;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

p {
}

p.large-blue-text {
    font-size: 32pt;
    color: #2178ba;
    font-weight: 600;
}

ul {
}

a {
}

a img {
    border: none;
}

.demi-bold {
    font-weight: 500;
}

/************************
 * 3. Forms
 ************************/

input[type="text"], select, textarea, button {
    -webkit-appearance: none;
    border-radius: 0;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    font-family: "aktiv-grotesk-std", sans-serif;
    font-size: 12pt;
}

/************************
 * 4. Base Layout
 ************************/

div#container {
    display: block;
    overflow-x: hidden;
}

div#header {
    display: block;
    padding: 10px;
    height: 38px;
    text-align: center;
    color: #FFF;
    border-bottom: 1px solid #2d2d2d;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    background: #1e1e1f;
}

div#logo {
    display: block;
    width: 116px;
    height: 31px;
    position: absolute;
    top: 7px;
    left: 50%;
    margin-left: -38px;
    background: url('../img/logo.png') center no-repeat #1e1e1f;
    background-size: 116px 31px;
}

/**div#footer {
    display: block;
    padding: 25px;
    text-align: center;
    background: #000;
    color: #FFF;
}

div#footer > a {
    display: inline-block;
    font-size: 10pt;
    color: #FFF;
    text-decoration: underline;
}

div#footer > a:last-child {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #4d4d4d;
}*/

p.copyright {
    display: block;
    margin-bottom: 5px;
    font-size: 10pt;
    color: #aaa;
}

/************************
 * 5. Home Page
 ************************/

div.cancel-search,
div.cancel-location-search,
div.go-back {
    display: none;
    float: left;
    width: 37px;
    height: 37px;
    background: url('../img/cancel-search.png') center no-repeat;
    background-size: 100% 100%;
}

div.cancel-location-search,
div.go-back {
    background: url('../img/cancel-location-search.png') center no-repeat;
    background-size: 100% 100%;
}

div.search-input-wrapper {
    display: block;
    background: #dadde2;
    padding: 10px;
}

input#search-input {
    display: block;
    height: 45px;
    padding: 10px 10px 10px 40px;
    margin: 0;
    border-radius: 5px;
    background: url('../img/search-icon.png') 10px center no-repeat #FFF;
    background-size: 20px 20px;
    color: #67676d;
    border: 1px solid #b7bbc2;
}

div.cancel {
    display: none;
    width: 40px;
    height: 40px;
    position: absolute;
    background: url('../img/cancel.png') center no-repeat;
    background-size: 100% 100%;
    top: 12px;
    right: 12px;
    z-index: 100;
}

div.cell div.cancel {
    display: block;
    top: 3px;
    right: 3px;
}

div.select-location {
    display: none;
    padding: 14px 10px 14px 12px;
    color: #87878a;
    font-size: 11pt;
    background: url('../img/right-arrow.png') right center no-repeat #f0f3f7;
    background-size: 17px 15px;
    border-top: 1px solid #e1e4e9;
    border-bottom: 1px solid #e1e4e9;
}

div.select-location > span {
    font-weight: 600;
    color: #414142;
    margin-left: 12px;
}

div#search-locations {
    display: none;
    width: 100%;
    position: absolute;
    top: 59px;
    right: -100%;
    overflow: hidden;
    background: #FFF;
    z-index: 100;
}

div#search-locations.show {
    right: 0;
}

div.search-location {
    display: block;
    padding: 20px 0;
    background: url('../img/right-arrow-light.png') right center no-repeat;
    background-size: 7px 15px;
    border-bottom: 1px solid #eaeaea;
}

div.search-location.current-location {
    padding-left: 30px;
    background: url('../img/current-location-icon.png') left center no-repeat, url('../img/right-arrow-light.png') right center no-repeat;
    background-size: 18px 15px, 7px 15px;
}

div.location-input-wrapper {
    display: block;
    background: #d6d8dd;
    padding: 10px;
}

input#location-input {
    display: block;
    padding: 10px;
    margin: 0;
    height: 45px;
    border-radius: 5px;
    background: #FFF;
    color: #67676d;
    border: 1px solid #b7bbc2;
}

div#search-locations-wrapper {
    display: none;
    padding: 0 10px;
}

div#search-categories,
div#search-results {
    display: none;
}

div.search-categories-wrapper,
div.search-results-wrapper {
    display: block;
    padding: 0 10px;
}

div.search-category,
div.search-result {
    display: block;
    padding: 10px 0;
    background: url('../img/right-arrow-light.png') right center no-repeat;
    background-size: 7px 15px;
    border-bottom: 1px solid #eaeaea;
}

div.search-result {
    padding: 13px 0;
}

div.search-categories-wrapper > div.search-category:last-child {
    border-bottom: none;
}

div.search-category > .cell:first-child {
    padding-right: 5px;
}

div.search-category > .cell:last-child {
    padding-left: 5px;
}

div.search-category-icon {
    display: block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px;
}

div.search-category-icon.icon-star {
    background-image: url('../img/star-icon.png');
    background-size: 19px 19px;
}

div.search-category-icon.icon-deals {
    background-image: url('../img/deals-icon.png');
    background-size: 22px 18px;
}

div.search-category-icon.icon-bank {
    background-image: url('../img/bank-icon.png');
}

div.search-category-icon.icon-bars {
    background-image: url('../img/bars-icon.png');
}

div.search-category-icon.icon-candyshop {
    background-image: url('../img/candyshop-icon.png');
}

div.search-category-icon.icon-charities {
    background-image: url('../img/charities-icon.png');
}

div.search-category-icon.icon-coffeeshop {
    background-image: url('../img/coffeeshop-icon.png');
}

div.search-category-icon.icon-costumes {
    background-image: url('../img/costumes-icon.png');
}

div.search-category-icon.icon-drycleaner {
    background-image: url('../img/drycleaner-icon.png');
}

div.search-category-icon.icon-fabricstores {
    background-image: url('../img/fabricstores-icon.png');
}

div.search-category-icon.icon-grocerystores {
    background-image: url('../img/grocerystores-icon.png');
}

div.search-category-icon.icon-hobbyshop {
    background-image: url('../img/hobbyshop-icon.png');
}

div.search-category-icon.icon-kennels {
    background-image: url('../img/kennels-icon.png');
}

div.search-category-icon.icon-pharmacy {
    background-image: url('../img/pharmacy-icon.png');
}

div.search-category-icon.icon-physicaltherapy {
    background-image: url('../img/physicaltherapy-icon.png');
}

div.search-category-icon.icon-physicians {
    background-image: url('../img/physicians-icon.png');
}

div.search-category-icon.icon-restaurants {
    background-image: url('../img/restaurants-icon.png');
}

div.search-category-icon.icon-shoesstores {
    background-image: url('../img/shoesstores-icon.png');
}

div.search-category-icon.icon-sportinggoods {
    background-image: url('../img/sportinggoods-icon.png');
}

div.search-category-icon.icon-thriftstores {
    background-image: url('../img/thriftstores-icon.png');
}

div.search-category-icon.icon-towingservices {
    background-image: url('../img/towingservices-icon.png');
}

div.search-category-icon.icon-veterinary {
    background-image: url('../img/veterinary-icon.png');
}

div.search-category-text a {
    text-decoration: none;
    color: #000;
}

p.search-result-name {

}

p.search-result-address {
    font-size: 10pt;
    color: #95959a;
}

div.search-results-empty {
    display: none;
    padding: 30px;
}

div.static-top.search {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

div.scroll-area.search {
    position: absolute;
    top: 170px;
    width: 100%;
}

div.static-top.location {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

div.static-top.location .select-location {
    display: none !important;
}

div.scroll-area.location {
    position: absolute;
    top: 124px;
    width: 100%;
}

div.scroll-area.location #search-categories {
    display: none !important;
}

div.scroll-area.location #search-locations-wrapper {
    display: block;
}

div#category-select {
    display: block;
    padding: 20px 0;
    background: #fafafa;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

div.category-select-wrapper {
    display: block;
    width: 5000px;
}

div.category-select-wrapper > div {
    text-transform: capitalize;
}

div.category-select-wrapper > div:first-child {
    margin-left: 10px;
}

div.category-select-high,
div.category-select-medium,
div.category-select-low {
    display: block;
    position: relative;
    float: left;
    margin-right: 6px;
    min-width: 65px;
    padding: 180px 10px 10px 10px;
    border-radius: 5px;
    font-size: 10pt;
    font-weight: 500;
    color: #FFF;
    text-align: center;
}

div.category-select-high {
    background-color: #e65e4d;
}

div.category-select-medium {
    background-color: #f98326;
}

div.category-select-low {
    background-color: #faa006;
}

span.category-select-icon {
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 65px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    margin-top: -32.5px;
    left: 50%;
    margin-left: -35px;
    background-size: 30px 30px;
    background-position: center;
    background-repeat: no-repeat;
}

span.icon-banks {
    background-image: url('../img/restaurants-select-icon.png');
}

span.icon-bars {
    background-image: url('../img/bars-select-icon.png');
}

span.icon-candystore {
    background-image: url('../img/candystore-select-icon.png');
}

span.icon-charities {
    background-image: url('../img/charities-select-icon.png');
}

span.icon-coffeeshops {
    background-image: url('../img/coffeeshops-select-icon.png');
}

span.icon-costumes {
    background-image: url('../img/costumes-select-icon.png');
}

span.icon-drycleaner {
    background-image: url('../img/drycleaner-select-icon.png');
}

span.icon-fabricstores {
    background-image: url('../img/fabricstores-select-icon.png');
}

span.icon-grocerystores {
    background-image: url('../img/grocerystores-select-icon.png');
}

span.icon-hobbyshop {
    background-image: url('../img/hobbyshop-select-icon.png');
}

span.icon-kennels {
    background-image: url('../img/kennels-select-icon.png');
}

span.icon-pharmacy {
    background-image: url('../img/pharmacy-select-icon.png');
}

span.icon-physicaltherapy {
    background-image: url('../img/physicaltherapy-select-icon.png');
}

span.icon-physicians {
    background-image: url('../img/physicians-select-icon.png');
}

span.icon-restaurants {
    background-image: url('../img/restaurants-select-icon.png');
}

span.icon-shoes {
    background-image: url('../img/shoes-select-icon.png');
}

span.icon-sportinggoods {
    background-image: url('../img/sportinggoods-select-icon.png');
}

span.icon-thriftstore {
    background-image: url('../img/thriftstore-select-icon.png');
}

span.icon-towingservices {
    background-image: url('../img/towingservices-select-icon.png');
}

span.icon-veterinary {
    background-image: url('../img/veterinary-select-icon.png');
}

div.category-select-food,
div.category-select-coffee,
div.category-select-towing {
    display: block;
    width: 65px;
    float: left;
    margin-right: 6px;
    padding: 180px 10px 10px 10px;
    border-radius: 5px;
    font-size: 10pt;
    font-weight: 500;
    color: #FFF;
    text-align: center;
}

div.category-select-food {
    background: url('../img/category-select-food.jpg') center no-repeat #e65e4d;
    background-size: 65px 65px;
}

div.category-select-coffee {
    background: url('../img/category-select-coffee.jpg') center no-repeat #f98326;
    background-size: 65px 65px;
}

div.category-select-towing {
    background: url('../img/category-select-towing.jpg') center no-repeat #faa006;
    background-size: 65px 65px;
}

div#services {
    display: block;
}

div.whats-nearby {
    padding: 0 10px;
}

div.whats-nearby > .cell {
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

div.whats-nearby > .cell:last-child {
    width: 50px;
}

div.services-list {
    padding: 0 10px 10px 10px;
    margin-bottom: 10px;
}

div.service > .cell {
    padding: 12px 5px;
    border-bottom: 1px solid #ddd;
}

div.service > .cell > .cell {
    padding: 0 2px;
}

div.services-list .service > .cell:first-child {
    width: 45px;
    max-width: 45px;
    padding: 0;
}

div.service-logo {
    display: block;
    width: 45px;
    height: 45px;
}

div.services-list .service > .cell:nth-child(2) {
    width: 10px;
    max-width: 10px;
    padding: 12px 3px 8px 10px;
    text-align: right;
}

div.services-list .service > .cell:nth-child(4) {
    width: 44px;
    max-width: 44px;
    padding: 12px 0;
}

p.service-num {
    font-size: 9pt;
    color: #666;
    margin-top: 4px;
}

p.service-name {
    display: inline-block;
    font-weight: 500;
    height: 20px;
    overflow: hidden;
    margin-bottom: 3px;
}

p.service-name.has-coupon {
    padding-right: 20px;
    background: url('../img/coupon-icon.png') right center no-repeat;
    background-size: 18px 15px;
}

p.service-rating {
            display: block;
            background: #000;
            font-size: 9pt;
            color: #FFF;
            padding: 5px;
            border-radius: 2px;
        }

p.service-rating.excellent-rating {
    background: #2f89cd;
    color: #FFF;
}

p.service-rating.good-rating {
    background: #59a2d9;
    color: #FFF;
}

p.service-rating.poor-rating {
    background: #95959a;
    color: #FFF;
}

p.service-address {
    display: block;
    font-size: 10pt;
    line-height: 1;
    color: #000;
    font-weight: 500;
}

p.service-cat {
    display: block;
    font-size: 9pt;
    color: #666;
}

p.service-desc {
    display: block;
    font-size: 11pt;
    font-weight: 500;
}

p.service-distance {
    font-size: 8pt;
    text-align: right;
    margin-top: 5px;
    min-width: 40px;
}

p.service-status {
    font-size: 8pt;
    text-align: right;
    margin-top: 5px;
    font-weight: bold;
    line-height: 1;
}

p.service-status.red {
    color: red;
}

p.service-status.green {
    color: green;
}

a.more-places {
    display: block;
    width: 145px;
    margin: 0 auto 20px;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    color: #3f3f42;
    font-size: 10pt;
    font-weight: 500;
    text-shadow: 1px 1px 1px #FFF;
    border: 1px solid #b7bbc2;
    border-radius: 5px;
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #eceff4)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%, #eceff4 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eceff4', GradientType=0); /* IE6-9 */
}

/************************
 * 6. Category Page
 ************************/
div.static-top.results {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

div.scroll-area.results {
    position: absolute;
    top: 124px;
    width: 100%;
    transition: top 0.1s ease-in 0s;
    -webkit-transition: top 0.1s ease-in 0s;
    -moz-transition: top 0.1s ease-in 0s;
}

div.scroll-area.results.sorting {
    top: 211px;
}

div.sort-results .cell {
    background: #2178ba;
    position: relative;
    color: #FFF;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 18px;
    font-size: 10pt;
}

div.sorting-option[sort-by="rating"] {
    background: url('../img/sort-by-rating.png') center 15px no-repeat #2178ba;
    background-size: 26px 26px;
    border-right: 1px solid #FFF;
}

div.sorting-option[sort-by="distance"] {
    background: url('../img/sort-by-distance.png') center 20px no-repeat #2178ba;
    background-size: 33px 20px;
    border-right: 1px solid #FFF;
}

div.sorting-option[sort-by="deals"] {
    background: url('../img/sort-by-deals.png') center 20px no-repeat #2178ba;
    background-size: 26px 21px;
}

div.sorting-option.active {
    background-color: #2f89cd;
}

div.sorting-option.active:after {
    display: block;
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    margin-left: -7px;
    width: 14px;
    height: 6px;
    background: url('../img/sorting-option-active.png') center no-repeat;
    background-size: 100% 100%;
}

.search-input-wrapper > .table > .cell:nth-child(2) {
    padding: 0 10px;
}

.search-input-wrapper > .table > .cell:nth-child(2) .cancel {
    right: 12px;
}

.search-input-wrapper.searching > .table > .cell:nth-child(2) {
    padding: 0;
}

.search-input-wrapper.searching > .table > .cell:nth-child(2) .cancel {
    right: 3px;
}

div.category-sort {
    width: 45px;
    text-align: center;
    font-size: 10pt;
    font-weight: 600;
    color: #3f3f42;
    border: 1px solid #b7bbc2;
    border-radius: 5px;
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #eceff4)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%, #eceff4 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eceff4', GradientType=0); /* IE6-9 */
}

div.category-sort.active {
    background: #67676d;
    color: #FFF;
}

div.category-map {
    width: 45px;
    background: url('../img/map-button.png') center no-repeat;
    background-size: 45px 45px;
}

div.category-list {
    display: none;
    width: 45px;
    background: url('../img/list-button.png') center no-repeat;
    background-size: 45px 45px;
}

div#map {
    display: block;
}

div#info-window {
    display: block;
    position: fixed;
    width: 100%;
    height: auto;
    background: #FFF;
    bottom: -100%;
    box-shadow: -2px -2px 2px rgba(0, 0, 0, 0.1);
    transition: bottom 0.1s ease-in 0s;
    -webkit-transition: bottom 0.1s ease-in 0s;
    -moz-transition: bottom 0.1s ease-in 0s;
}

div#info-window.show {
    bottom: 0;
}

/************************
 * 7. Details Page
 ************************/
div#service-details .service .cell {
    border: none;
}

p.open-until {
    font-size: 10pt;
    padding-left: 12px;
    padding-bottom: 12px;
}

p.open-until span {
    color: green;
    font-weight: bold;
}

div.service-contact {
    padding: 10px 0;
    background: #fafafa;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

div.service-contact a {
    display: block;
    padding: 35px 0 10px;
    font-size: 11pt;
    color: #3f3f42;
    text-decoration: none;
}

a.service-directions {
    background-image: url('../img/directions-icon.png');
    background-position: center 10px;
    background-size: 17px 17px;
    background-repeat: no-repeat;
    border-right: 1px solid #e5e5e5;
}

a.service-phone {
    background-image: url('../img/call-icon.png');
    background-position: center 10px;
    background-size: 17px 17px;
    background-repeat: no-repeat;
}

div.service-deal {
    display: block;
    padding: 15px 15px 15px 40px;
    font-size: 11pt;
    color: #000;
    font-weight: 500;
    background: url('../img/deals-icon.png') 10px center no-repeat;
    background-size: 22px 18px;
}

div#service-photos {
    display: block;
}

div.service-photo {
    display: block;
    float: left;
    margin-left: 10px;
    width: 75px;
    height: 75px;
    background: #999;
}

div#service-photos > div.service-photo:last-child {
    margin-right: 10px;
}

div.service-links {
    display: block;
    padding: 8px 12px 0 12px;
    border-bottom: 1px solid #eaeaea;
}

div.service-links > a {
    display: block;
    padding: 15px 0;
    font-size: 12pt;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    border-top: 1px solid #eaeaea;
    background: url('../img/right-arrow-light-small.png') right center no-repeat;
    background-size: 7px 15px;
}

div.service-links > a > span {
    font-weight: normal;
    color: #999;
}

div.service-info {
    display: block;
    padding: 15px 12px;
    background: #fafafa;
    color: #444;
}

h2.service-header {
    display: block;
    font-size: 10pt;
    font-weight: bold;
    color: #333;
}

div.service-info p {
    padding: 10px 0;
    line-height: 1.4em;
    font-size: 10pt;
}

div.service-hours {
    display: block;
    padding: 0 12px 15px 12px;
    background: #fafafa;
    border-bottom: 1px solid #eaeaea;
    font-size: 10pt;
    color: #444;
}

div.service-hours .cell {
    padding: 5px;
}

div.service-hours .row > .cell:first-child {
    padding-left: 20px;
}

div.service-reviews {
    display: block;
    padding: 15px 12px;
}

p.service-num-reviews {
    font-size: 10pt;
    color: #67676d;
}

div.service-review {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

div.service-reviews > div.service-review:first-child {
    border-top: 1px solid #e5e5e5;
}

div.service-review > .cell:first-child {
    padding: 3px 10px 0 0;
}

div.service-review p {
    font-size: 10pt;
    line-height: 1.4em;
    color: #444;
}

div.service-review p.service-review-author {
    display: inline-block;
    margin-top: 10px;
    vertical-align: middle;
    color: #333;
    font-weight: bold;
}

div.service-review p.service-review-time {
    display: inline-block;
    margin-top: 10px;
    vertical-align: middle;
    color: #666;
}

a.more-reviews,
a.less-reviews {
    display: block;
    width: 145px;
    margin: 0 auto 20px;
    text-align: center;
    padding: 10px;
    color: #3f3f42;
    font-size: 10pt;
    font-weight: 500;
    text-shadow: 1px 1px 1px #FFF;
    border: 1px solid #b7bbc2;
    border-radius: 5px;
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #eceff4)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #eceff4 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%, #eceff4 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eceff4', GradientType=0); /* IE6-9 */
}

div.hidden-review {
    display: none;
}

/****************************
 * Contact Page
 ***************************/

#contact-form-wrapper {
    display: block;
    padding: 10px;
}

#contact-form-wrapper h2 {
    display: block;
    text-align: center;
    color: #333;
    font-weight: 500;
    font-size: 16pt;
    padding: 20px 0;
    margin-bottom: 10px;
}

input,
textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

textarea {
    height: 100px;
    resize: none;
}

input:focus,
textarea:focus {
    border-color: #76c3fe;
}

input.error,
textarea.error {
    background: #fff4f4;
    border-color: red;
}

button.submit {
    display: block;
    background: #2f89cd;
    color: #FFF;
    border-radius: 3px;
    padding: 10px 60px;
    border: none;
    font-size: 11pt;
    font-weight: 500;
    margin: 20px auto;
}

button.submit[disabled] {
    color: #76c3fe;
}

.checkbox {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.checkbox.checked:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 22px;
    background: url('../img/checkbox.png') center no-repeat;
    background-size: 100% 100%;
    content: '';
}

label {
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 5px;
}

label.error {
    display: none !important;
}

select {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 10px;
    padding: 10px;
    background: url('../img/select-bg.png') right center no-repeat;
    background-size: 34px 8px;
}

#contact-form-success {
    display: none;
}

.social {
    padding: 15px;
}

.social > a {
    margin-right: 10px;
}

div.service-review > .cell:first-child {
		padding: 3px 10px 0 0;
		      width: 19px !important;
	}