﻿/*------------------------------------
  Basic
------------------------------------*/
html {
    font-size: 16px;
    height: 100%;
}

body {
    font-weight: 400;
    font-size: 1rem;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #0c0d0f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga", "kern";
    text-rendering: optimizelegibility;
    height: 100%;
    /* Stuff for sticky footer */
    display: flex;
    flex-direction: column;
}
/* For sticky footer */
#wrapper {
    flex-shrink: 0;
}

a {
    overflow-wrap: break-word;
    /*word-wrap: break-word;*/
}

.h1, .h2, .h3, .h4, .h5, .h6, .h7,
h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    line-height: 1.4;
}

body a:not(.btn) {
    text-decoration: underline;
}

body a:hover, body a:focus {
    text-decoration: none;
}

/*------------------------------------
  Header
------------------------------------*/
header {
    height: auto;
    padding: 0;
    transition: all .3s ease-in-out;
    border-bottom: 1px solid #e2e5e8;
}

    header .account-bar {
        padding: 2.5px;
        line-height: 1;
        font-size: 85%;
    }

        header .account-bar .nav a.nav-link {
            text-transform: uppercase;
            padding: .35em .5em;
            text-decoration: none;
        }

            header .account-bar .nav a.nav-link:hover,
            header .account-bar .nav a.nav-link:focus {
                text-decoration: none;
            }

        header .account-bar .nav .dropdown-menu {
            border-radius: 0;
            border: 1px solid #e2e5e8;
        }

            header .account-bar .nav .dropdown-menu a.dropdown-item {
                margin: 0;
                padding: 6px 10px;
                font-size: 14px;
                border-radius: 0;
                text-decoration: none;
                color: #1b1b1b;
                line-height: 22px;
            }

    header .navbar {
        padding: 0;
    }

body header .navbar-brand {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-decoration: none;
}

header .navbar-brand img {
    height: 40px;
    width: auto;
    margin-right: 0.7rem;
}

header .navbar-brand h1 {
    margin: 0;
    font-weight: 700;
    line-height: 1;
    font-size: 2.15rem;
}

header .navbar .navbar-nav .nav-link {
    padding: 34px 14px;
    border-radius: 0;
    transition: all .3s ease-out;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
    border-top: 3px solid transparent;
    color: rgba(0, 0, 0, .7);
    cursor: pointer;
    text-decoration: none;
}

    header .navbar .navbar-nav .nav-link.dropdown-toggle:hover,
    header .navbar .navbar-nav .nav-link.dropdown-toggle:focus {
        border-color: #e2e5e8 #e2e5e8 #fff;
    }

header .navbar .navbar-nav .dropdown .dropdown-menu {
    padding: 12px;
    border-radius: 0;
    border: 1px solid #e2e5e8;
    min-width: 250px;
    color: rgba(27, 27, 27, .8);
    background: #fff;
    transition: opacity .4s ease;
    margin: 0;
    max-width: 100%;
    font-size: 14px;
}

    header .navbar .navbar-nav .dropdown .dropdown-menu > li a {
        margin: 0;
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 0;
        background: #fff;
        border-bottom: 1px solid #e2e5e8;
        color: #1b1b1b;
        text-transform: none;
        text-decoration: none;
        display: block;
        line-height: 24px;
        letter-spacing: 0.5px;
    }

        header .navbar .navbar-nav .dropdown .dropdown-menu > li a:hover,
        header .navbar .navbar-nav .dropdown .dropdown-menu > li a:focus {
            color: #212529;
            background: #e2e5e8;
            text-decoration: none;
        }

/*------------------------------------
  Main Navigation Overrides
    Bootstrap's navbar dropdowns require a click to operate.
    Many projects want hover, or want the top level to be a link, so we are writing our own here.
    If you don't need this, you can remove it and refer to the Bootstrap docs revert:
    https://getbootstrap.com/docs/4.6/components/navbar/
------------------------------------*/
#mainNav .navbar-nav .nav-item {
    position: relative;
}

#mainNav .navbar-nav .nav-link.dropdown-toggle {
    position: relative;
    z-index: 11;
}

header .navbar #mainNav .navbar-nav .nav-item.dropdown:hover .nav-link.dropdown-toggle,
header .navbar #mainNav .navbar-nav .nav-item.dropdown:focus-within .nav-link.dropdown-toggle {
    border-color: #e2e5e8 #e2e5e8 #fff;
}

#mainNav .navbar-nav .nav-item.dropdown:hover .dropdown-menu,
#mainNav .navbar-nav .nav-link.dropdown-toggle:focus + .dropdown-menu,
#mainNav .navbar-nav .nav-item.dropdown:focus-within .dropdown-menu {
    top: calc(100% - 1px);
    z-index: 10;
}

    #mainNav .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item,
    #mainNav .navbar-nav .nav-link.dropdown-toggle:focus + .dropdown-menu .dropdown-item,
    #mainNav .navbar-nav .nav-item.dropdown:focus-within .dropdown-menu .dropdown-item {
        opacity: 1;
        transition: opacity 0.8s;
    }

#mainNav .navbar-nav .nav-item.dropdown .dropdown-menu {
    display: block;
    position: absolute;
    top: -1000%;
    left: 0;
    z-index: -1;
}

    #mainNav .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
        opacity: 0;
    }

/*------------------------------------
  Content Things
------------------------------------*/
#content {
    padding: 0 0 30px 0;
}

    #content > div:not(.page-title) h2 {
        margin-bottom: 1em;
        margin-top: 30px;
        padding: 0;
        font-size: 2.15rem;
        font-weight: 700;
        line-height: 1.2;
    }

/* Page Titles */
.page-title {
    background-color: #f8f9f9;
    color: #212529;
    padding-bottom: 3.5rem;
    padding-top: 3.5rem;
    margin-bottom: 30px;
}

    .page-title h2 {
        margin: 0;
        font-weight: 700;
        line-height: 1.2;
        font-size: 2.15rem;
        text-transform: uppercase;
    }

    .page-title.title-pattern {
        background-image: url("../img/title-pattern.png");
        border-bottom: 1px solid #e2e5e8;
    }

    .page-title.title-image {
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

        .page-title.title-image > * {
            position: relative;
            z-index: 2;
        }

        .page-title.title-image:after {
            position: absolute;
            top: 0;
            height: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            content: '';
            display: block;
            opacity: .65;
            visibility: visible;
            background-color: #fff;
        }

/* Accordions and FAQ */
.faq-item {
    border-bottom: 1px solid #e2e5e8;
    margin-bottom: 1rem;
}

[data-toggle="collapse"].btn-link.btn-block {
    font-weight: 600;
    color: rgba(0, 0, 0, .7);
    padding: 12px 12px 12px 26px;
    border-radius: 0;
    position: relative;
}

    [data-toggle="collapse"].btn-link.btn-block:hover,
    [data-toggle="collapse"].btn-link.btn-block:focus {
        color: #000;
    }

    [data-toggle="collapse"].btn-link.btn-block:after {
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-style: normal;
        speak: none;
        display: inline-block;
        position: absolute;
        line-height: inherit;
        font-size: inherit;
        color: inherit;
        text-align: center;
        left: 8px;
        content: "\f054";
        transition: all .3s ease-in-out;
    }

[data-toggle="collapse"][aria-expanded="false"].btn-link.btn-block:after {
    transform: rotate(0deg);
}

[data-toggle="collapse"][aria-expanded="true"].btn-link.btn-block:after {
    transform: rotate(90deg);
}

.faq-item .collapse .card {
    border-radius: 0;
    border: 0 !important;
}

/* Special Links */
a.icon-link {
    padding-right: 25px;
    line-height: 1em;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
}

.icon-link.pdf-link {
    background-image: url("/img/pdf_file.svg");
}

.icon-link.excel-link {
    background-image: url("/img/excel_file.svg");
}

.icon-link.word-link {
    background-image: url("/img/word_file.svg");
}

.icon-link.powerpoint-link {
    background-image: url("/img/powerpoint_file.svg");
}

.icon-link.external-link {
    background-image: url("/img/external_link.svg");
    background-size: 16px auto;
}

/* Heroes */
.hero {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

    .hero.overlay {
        position: relative;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

        .hero.overlay > * {
            position: relative;
            z-index: 2;
        }

        .hero.overlay:after {
            position: absolute;
            top: 0;
            height: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            content: '';
            display: block;
            opacity: .9;
            visibility: visible;
        }

    .hero.parallax {
        background-attachment: fixed;
    }

/* Call to Action */
.call-to-action {
    margin-bottom: 2.5rem;
}

/* Divider Section */
.divider-diagonal {
    position: relative;
    background-size: cover;
    overflow: hidden;
}

    .divider-diagonal:before {
        border-left-width: 150px;
        border-left-style: solid;
        height: 750px;
        margin-bottom: -750px;
        display: block;
        position: absolute;
        top: 0;
        content: '';
        z-index: 1;
        border-left-color: transparent;
        border-right-width: 150px;
        border-right-style: solid;
        border-top: 750px solid transparent;
        right: 0;
        left: auto;
    }

/* Icon Grid */
.icon-grid i {
    font-size: 3em;
}

/* Login Page */
.login-holder .login-form, .login-holder .survey-info {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}

/* Datatables Pagination */
.dataTables_paginate .pagination .page-link {
    padding: 0;
    border-radius: 0;
}

/* User Account Styles */
.checkbox {
    line-height: 38px;
}


/*------------------------------------
  Footer
------------------------------------*/
footer {
    /* For sticky footer */
    margin-top: auto;
}

    footer h2 {
        margin: 0 0 0.5rem;
        line-height: 1.2;
        font-weight: 700;
        font-size: 1.25rem;
    }

    footer address abbr {
        margin-right: .3rem;
    }


/*------------------------------------
  Bootstrap Overrides
------------------------------------*/
.btn, .form-control, .custom-checkbox .custom-control-label::before, .custom-select, .custom-file-label, .custom-file-label::after, .card, .card-header:first-child {
    border-radius: 0;
}

/*------------------------------------
  Utilities
------------------------------------*/
.text-sm {
    font-size: 90%;
}

.pt-6 {
    padding-top: 4.5rem !important;
}

.pb-6 {
    padding-bottom: 4.5rem !important;
}

.py-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
}

button:empty {
    display: none;
}


/*------------------------------------
  User management related classes
------------------------------------*/
.um-content-container {
    padding: 0px 130px 0px 130px;
}

.um-datatable-search {
    float: right;
}

.um-datatable-bottom {
}

.um-right-margin-10 {
    margin-right: 10px;
}

.um-horizontal {
    display: inline-block;
}

.um-datatable-bottom {
    margin-top: 50px;
    margin-bottom: 50px;
}

table.dataTable tr:nth-child(even) {
    background-color: whitesmoke;
}

table.dataTable th, td {
    padding: 15px;
}

table.dataTable {
    width: 100% !important;
}

#userTable_paginate {
    text-align: left;
}

.table-hover tbody tr:hover td {
    background: #e2e2e2;
}

.banner{
    gap: 15px;
}
.banner-img{
    width: 30%;
    border-radius: 10px;
}
@media (mas-width: 768px){
    .banner-img{
        width: 100%;
    }
}

.lachsLogoHeader {
    display: flex;
    justify-content: space-between; /* or use 'center' or 'flex-start' depending on layout */
    align-items: center;
    /*padding: 20px 20px;*/
}

.lachsLogo1 {
    width: 200px;
    margin: 30px 0px;
    max-height: 70px;
    /* height: fit-content; */
}

.lachsLogo2 {
    width: 400px;
    /*margin: 0 10px;*/
}

.lachsLogo3 {
    width: 120px;
    /*margin: 0 10px;*/
}


.lachsHeader {
    background-color: #061c60;
    margin: 0 auto;
    height: 42px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.lachsLinks {
    /*float: left;*/
    float: right; /*THIS IS TEMPORARY WHEN ONLY USING ENGLISH AND SPANISH*/
    padding-top: 7px;
    padding-left: 30px;
    padding-right: 30px;
    /*width: 15%;*/
    color: white;
    cursor: pointer;
    margin: 0 auto;
    white-space: nowrap;
    font-weight: bold;
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eeeeee;
}

    .jumbotron h1,
    .jumbotron .h1 {
        color: inherit;
    }

    .jumbotron p {
        margin-bottom: 15px;
        font-size: 21px;
        font-weight: 200;
    }

    .jumbotron > hr {
        border-top-color: #d5d5d5;
    }

.container .jumbotron,
.container-fluid .jumbotron {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 6px;
}

.jumbotron .container {
    max-width: 100%;
}


.jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
}

.container .jumbotron,
.container-fluid .jumbotron {
   /* padding-right: 60px;
    padding-left: 60px;*/
}

.jumbotron h1,
.jumbotron .h1 {
    font-size: 63px;
}

.btn {
    cursor: pointer;
    border-radius: 0;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.333333;
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
}

.frm {
    margin-left: 5%;
    margin-right: 5%;
}

.lead {
    margin-left: 5%;
    margin-right: 5%;
}

.submit {
    display: block;
}

.txt {
    font-size: 90%;
    width: 10%;
}