﻿html,
body {
    overflow-x: hidden; /* Prevent scroll on narrow devices */
    /*font-size: 0.875rem;*/
    background-color: #f6f7f8;
}

body {
    padding-top: 58.75px;
    padding-bottom: 30px;
}

@media (max-width: 767.98px) {
    .offcanvas-collapse {
        position: fixed;
        top: 58.75px; /* Height of navbar */
        bottom: 0;
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
        overflow-y: auto;
        background-color: var(--gray-dark);
        transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

        .offcanvas-collapse.open {
            -webkit-transform: translateX(-1rem);
            transform: translateX(-1rem); /* Account for horizontal padding on navbar */
        }
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

    .nav-scroller .nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        color: rgba(255, 255, 255, .75);
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

.nav-underline .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    color: var(--secondary);
}

    .nav-underline .nav-link:hover {
        color: var(--blue);
    }

.nav-underline .active {
    font-weight: 500;
    color: var(--gray-dark);
}

.text-white-50 {
    color: rgba(255, 255, 255, .5);
}

.bg-purple {
    background-color: var(--purple);
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.lh-100 {
    line-height: 1;
}

.lh-125 {
    line-height: 1.25;
}

.lh-150 {
    line-height: 1.5;
}
/*-----------------------*/
.card,
.btn,
.form-control,
.form-control-lg {
    border-radius: 0;
}

nav.navbar {
    background-color: #fbc826;
}

nav a.navbar-brand {
    font-size: 24px;
}

div.global-nvabar-ddl {
}

    div.global-nvabar-ddl select.form-control:not([size]):not([multiple]) {
        padding: .5rem 1rem;
        height: calc(2.875rem + 2px);
    }

    div.global-nvabar-ddl a.btn {
        padding: .67rem .75rem;
    }

.h7 {
    font-size: smaller;
}

.table-jobs table tr td {
    padding: 0.3rem;
}

.table-jobs table td > i.text-gray {
    color: #ccc;
}

/*---------------------------*/
.form-control-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text,
.btn-group-lg > .btn,
.btn-lg {
    font-size: 1rem;
}

.mobile-footer {
    background-color: rgba(0,0,0,.7);
}

    .mobile-footer .btn-group-lg > .btn,
    .mobile-footer .btn-lg {
        padding: .7rem 1.8rem;
    }

#scrollUp {
    position: unset !important;
    display: inline-block;
    height: 48px;
    width: 48px;
    line-height: 48px;
    text-align: center;
    background-color: #fff;
    font-size: 24px;
    border-radius: 0.25rem;
}


    #scrollUp i.fa {
        line-height: 40px;
    }

/*#scrollUp {
    background-image: url("../Content/image/back-to-top-normal.png");
    bottom: 90px;
    right: 20px;
    width: 64px;
    height: 92px;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s;
}

    #scrollUp:hover {
        background-image: url("../Content/image/back-to-top-active.png");
    }*/

blockquote {
    /*margin: 50px auto;*/
    /*font-style: italic;*/
    color: #555555;
    padding: 1.2em 30px 1.2em 75px;
    border-left: 8px solid #78C0A8;
    line-height: 1.6;
    position: relative;
    background: #EDEDED;
}

    blockquote::before {
        font-family: Arial;
        content: "\201C";
        color: #78C0A8;
        font-size: 4em;
        position: absolute;
        left: 10px;
        top: -10px;
    }

    blockquote::after {
        content: '';
    }

    blockquote p {
        font-size: 1rem;
    }

    blockquote span {
        font-size: 0.875rem;
        display: block;
        color: #333333;
        font-style: normal;
        margin-top: 1em;
    }

    /* blockquote.warning*/
    blockquote.warning {
        border-left-color: rgba(249,173,42,0.96);
    }

        blockquote.warning:before {
            color: rgba(249,173,42,0.96);
        }
