/* Labs common styles */
/* Defaults */
html {
    min-height: 100%;
    position: relative;
}

body {
    height: 100%;
}

/*
h1, h2, h3, h4, h5, h6, input {
    font-family: "Roboto", "sans-serif";
}
*/

h1 {
/*    font-family: 'Roboto', 'sans-serif'; */
    font-size: 45px;
    line-height: 48px;
    margin-bottom: 11px;
    font-weight: 300;
}

h2 {
    font-size: 34px;
    font-weight: 300;
}

h3, .headline {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
    font-weight: 300;
}

a, a:visited, a:hover, a:link, a:active {
    text-decoration: none;
}

h4, .title {
    font-size: 20px;
    font-weight: 500;
}
h5, .sub-header{
    font-size: 16px;
    font-weight: 300;
}

h6 {
    font-size: 14px;
    font-weight: 500;
}

a {
    color: #333;
}

/* Composable Elements */

/** Colors **/
.bg.blue.dark{
    background-color: #2164f3;
}

.bg.light.grey {
    background-color: #E0E0E0;
}

.fg.grey.light {
    color: #9E9E9E;
}

.fg.grey {
    color: #757575;
}

.fg.white {
    color: white;
}

.fg.white.dark {
    color: rgba(255, 255, 255, 0.87);
}

.fg.black {
    color: black;
}

.fg.black.light {
    color: rgba(0, 0, 0, 0.87);
}

.fg.blue.dark {
    color: #2164f3;
}

/* Indeed Apply orange */
.fg.orange {
    color: #f60;
}

/* Sponsored jobs pink */
.fg.pink {
    color: #CD29C0;
}

.bg.green {
    background-color: #42BD41;
}

.fg.green {
    color: #42BD41;
}

/** Alignment **/
.centered {
    text-align: center;
}

.text-right {
    text-align: right
}

/** Font Sizing **/
.thin.weight {
    font-weight: 300;
}

.regular.weight {
    font-weight: 400;
}

.heavy.weight {
    font-weight: 500;
}

.compact.spacing {  /* compact */
    letter-spacing: -1px;
}

/** Element sizing **/
.width.pct65 { /* wide */
    width: 65%;
}
.full.width { /* full */
    width: 100% !important;
}
.half.width {
    width: 50%;
}

/** Positioning **/
/* The children of this element will be position relative to this element */
.block {
    display: block;
}
.parent, .relative {
    position: relative;
}

.inline-block {
    display: inline-block;
}
.fixed {
    position: fixed;
}
.top {
    top: 0;
}
.left {
    left: 0;
}
.right {
    right: 0;
}
.middle {
    vertical-align: middle;
}

.auto {
    margin: auto;
}

/** Padding **/

.padding.left {
    padding-left: 16px;
}

/** Text transforms **/
.uppercase {
    text-transform: uppercase;
}
.capitalize {
    text-transform: capitalize;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
}

/** Shading **/
.shadow.beneath.light {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

.shadow.beneath.medium {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

/** Disable built in styles **/
.no.margin {
    margin: 0 !important;
}
.no.padding {
    padding: 0;
}
.no.padding-right{
    padding-right: 0 !important;
}
.no.padding-bottom {
    padding-bottom: 0;
}
.no.margin-bottom {
    margin-bottom: 0;
}

.no.border {
    border: none !important;
    outline: none !important;
}

/* Base elements */

/* Cover pages are full page spreads for promo/graphics */
.cover.page {
    width: 100%;
    height: 100%;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    overflow:hidden;
}

.app-tab.active {
    color: white;
}
.app-tab.inactive {
    color: rgba(255, 255, 255, 0.67);
}

.input {
    outline: none;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    background-color: transparent;
    box-shadow: none;
    line-height: normal;
    box-sizing: content-box;
}


input.large, .input.large {
    height: 45px;
    font-weight: 400;
}

.margin.top.small {
    margin-top: 12px;
}

.pct80 {
    max-width: 80%;
}

.pct85 {
    max-width: 85%;
}

.pct100 {
    max-width: 100%;
}

.pct90 {
    max-width: 90%;
}

.single-line {
    white-space: nowrap;
}

.full-list {
    list-style: none;
    -webkit-margin-before: 0px;
    -webkit-padding-start: 0px;
    margin-bottom: 0px;
}

.list-item {
    min-height: 56px;
    padding-top: 16px;
    padding-left: 16px;
    position: relative;
    border-bottom: 1px solid #BDBDBD;
}

.list-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 16px; /* Total space before content = 72px */
    max-width: 40px;
    vertical-align: top !important;
}

.list.content {
    display: inline-block;
    padding-bottom: 20px;
}

.list.content.full {
    max-width: 100%;
    width: 100%;
}

.logo-wrapper.lg {
    width: 56px;
    height: 56px;
}
.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

