/* CONCUR MOBILE LABS - 

COMMON CSS 

------------ */


/* .flex.half figure img  */


/* @import url(../fonts/sf/usesf.css); */


/* avoid the FOUT ------------ */

.wf-loading #body {
    /*display: none;*/
}

.wf-active #body {
    /*display: block;*/
}


/* Declare variables */

:root {
    --color_concur_blue: #0078c8;
    --color_main_bg: #FDFFFF;
    --color_charcoal: #383F46;
    --color_dark_grey: #7F8F97;
    --color_med_grey: #A7B6BF;
    --color_light_grey: #DBE1E6;
    --color_off_white: #F7FAFD;
    --image_width: 50px;
}

::selection {
    background: #1aa3ff;
    /* WebKit/Blink Browsers */
}

::-moz-selection {
    background: #1aa3ff;
    /* Gecko Browsers */
}

body {
    font-size: 100%;
    line-height: 1.5rem;
    color: #383F46;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    background: var(--color_off_white);
}

#body {
    height: 100%;
    width: 100%;
    position: absolute;
}

h1 {
    color: var(--color_concur_blue);
    font-weight: 300;
    font-size: 1.7rem;
    line-height: 2.1rem;
    margin-bottom: 1rem;
}

h2 {
    color: var(--color_charcoal);
    font-weight: 300;
    font-size: 1.7rem;
    line-height: 1.7rem;
    margin: 0 0 .5rem;
}

h3 {
    margin-top: 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4rem;
    color: var(--color_med_grey);
    flex-grow: 1;
}

.wrap {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.distractor {
    padding: 50px;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}


/* header ------------ */

#header {
    position: absolute;
    width: 100%;
    z-index: 5;
    background: var(--color_concur_blue);
}

#header_title {
    position: absolute;
    bottom: 12%;
    width: 70%;
    left: 295px;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    -webkit-transition: all .15s ease-in;
    -moz-transition: all .15s ease-in;
    -ms-transition: all .15s ease-in;
    -o-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

#header_title span {
    opacity: 0.4;
}

#header_logo {
    margin-left: 14px;
}

#header .contact,
#header .contact a {
    color: rgba(255, 255, 255, .7);
}

#header .contact a {
    color: #fff;
}

.top_header {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0;
    -webkit-transition: all .15s ease-in;
    -moz-transition: all .15s ease-in;
    -ms-transition: all .15s ease-in;
    -o-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.sticky_header {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    -webkit-transition: all .15s ease-in;
    -moz-transition: all .15s ease-in;
    -ms-transition: all .15s ease-in;
    -o-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

#header_logo {
    width: 240px;
    float: left;
    height: auto;
    -webkit-transition: all .15s ease-in;
    -moz-transition: all .15s ease-in;
    -ms-transition: all .15s ease-in;
    -o-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

#header_logo:hover {
    cursor: pointer;
}

#header .contact {
    float: right;
    margin: 0 30px 0 0;
    font-size: .8rem;
    line-height: 2.5rem;
    color: #d5d5d5;
    width: 100%;
    text-align: right;
}

#header .contact a {
    color: #d5d5d5;
}

#hamburger {
    height: 18px;
    width: 18px;
    position: absolute;
    bottom: 20%;
    left: 35px;
}

#hamburger .icon {
    display: none;
}

#hamburger:hover {
    cursor: pointer;
}

.main {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0px;
    width: 80%;
    text-align: left;
}

section {
    display: flex;
    padding: 14px;
    border: 1px solid var(--color_light_grey);
    border-radius: 3px;
    width: 31%;
    background: #fff;
    margin: 1%;
    box-shadow: 0 0 6px rgba(0, 0, 0, .05);
}

section img {
    height: 150px;
    width: auto;
    margin-right: 14px;
    border: 1px solid var(--color_light_grey);
}

.buttons {
    margin-bottom: 11px;
}

.buttons a {
    padding: 5px 20px;
    background: var(--color_off_white);
    border: 1px solid var(--color_light_grey);
    border-radius: 2px;
    text-decoration: none;
    margin-right: 14px;
    font-weight: 400;
}

.buttons a:hover {
    background: #E3F1F8;
    border-color: var(--color_med_grey);
}

.buttons a.android {
    color: #02AA84;
}

.buttons a.ios {
    color: #1aa3ff;
}

.buttons a.android.disabled,
.buttons a.ios.disabled {
    color: var(--color_light_grey);
    opacity: .75;
}

.buttons a.android.disabled:hover,
buttons a.ios.disabled:hover {
    cursor: default !important;
    background: var(--color_off_white);
    border: 1px solid var(--color_light_grey);
    opacity: .75;
}

.content {
    display: flex;
    flex-direction: column;
}


/* Desktops and laptops ----------- */

@media only screen and (max-width: 1280px) {
    section {
        width: 48%;
    }
    .main {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    section {
        width: 100%;
    }
    .main {
        width: 100%;
    }
}