/*!
 * ITS Hololens QRL v1.0 (https://www.its-na.com/)
 * Copyright 2011-2022 Interactive Training Systems, Inc.
 */

@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face
{
  font-family: embrima;
  src: url('fonts/ebrima.ttf');
} 

@font-face
{
  font-family: embrimabold;
  src: url('fonts/ebrima-bold.ttf');
}

*
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html
{
    height: 100%;
}

.returnbutton
{
    float: right;
    font-size: 1.6em;
    font-weight: bold;
}

body
{
    font-family: 'ebrima', arial, helvetica, sans-serif;
    letter-spacing:.01em;
    font-size: 1em;
    margin: 0;
    padding: 0;
    height: 100%;
    color:  #333;
    background-color: #fff;
}

.main-content
{
    padding: .5em 2.5em 2em;
    background-color: #fff;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    line-items: center;
}

.main-content .column
{
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    width: 30%;
    vertical-align: top;
    display: inline-block;
    padding-bottom: 2em;
}

.main-content .column img
{
    transition: 0.5s ease-in-out;
}

.main-content .column img:hover
{
    overflow: hidden;
    transform: scale(1.02);
    -webkit-transform:scale(1.02);
}

.standarddiv
{
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

@media screen and (max-width: 767px)
{
    .standarddiv
    {
        width: 100%;
    }
}

.wrapper
{
    min-height: max-content;
    margin: 0 auto;
}

h1
{
    font-weight: bold;
    font-size: 1.8em;
    padding:.3em 0;
    text-transform: uppercase;
}

h2
{
    font-weight: bold;
    font-size: 1.4em;
    padding: .3em 0;
}

h3
{
    font-weight: bold;
    font-size: 20px;
}

p
{
    margin: 1em 0;
    padding: .5em 0;
}

a
{
    position: relative;
    cursor: pointer;
}

abbr
{
    cursor: pointer !important;
    text-decoration: none !important;
    position: relative;
}

abbr:after
{
    position: absolute;
    opacity: .4;
    transform: translateY(0);
    content:'';
    top: 1.4em;
    height: 2px;
    background-color: #000;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    transition: 0.2s ease-in-out;
}

abbr:hover:after
{
    width: 0%;
}

abbr.parts
{
    position: absolute;
}

abbr.parts:after
{
    background-color: transparent;
}

a:link 
{
    color: #23527c;
    cursor: pointer;
}

.title
{
    display: inline-block;
    width: 50%;
}

.column.disabled
{
    opacity: 0.5;
}

img.resize
{
    width: 100%;
    height: auto;
    max-width: fit-content;
}

@media screen and (max-width: 991px)
{
    img.resize
    {
        max-width: 80%;
    }
}

img
{
    vertical-align: middle;
    border: 0;
}

a.back-to-top
{
    display: none;
    width: 60px;
    height: 60px;
    font-family: 'FontAwesome';
    font-size: 30px;
    color: white;
    padding: 10px 0;
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
    background-color: #ff6b25;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    box-shadow: 4px 4px 12px rgba(0,0,0,.3);
    transition: transform .2s ease;
}

a.back-to-top:hover
{
    transform: scale(1.2);
}

header
{
    background-color: #fff;
    color: #fff;
}

.header
{
    display: table;
    min-width: 100%;
}

.header .headerrow
{
    background-color: #fff;
    display: table-row;
    color: #000000;
}

.headerleft
{
    display: table-cell;
    vertical-align: middle;
    width: 25%;
    text-align: left;
    padding: 1em 1em 1em 5em;
}

.headerleft img
{
    max-width: 250px;
}

.headercenter
{
    padding-top: 1em;
    text-align: center;
    width: 50%;
    color: #f4f5f9;
    font-size: 26px;
    line-height: 65px;
    font-weight: bold;
    display: table-cell;
    vertical-align: middle;
    display: none;
}

.divider
{
    background-color: #171717;
    height: 10px;
    clear: both;
}

#title
{
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    color: #000000;
}

svg
{
    max-width: 9.5em;
    padding: 1em;
}

.headerright
{
    text-align: right;
    width: 25%;
    padding: 1em 4em 1em 1em;
    display: table-cell;
    font-weight: bold;
    font-size: 1.5em;
    vertical-align: middle;
}

.headerright img
{
    max-height: 34px;
}

.theme-color-ray
{
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.footer
{
    margin: 0 5em;
}

@media screen and (max-width: 800px)
{
    .footer
    {
        margin: 0 2em;
    }
}

.footer img
{
    max-width: 90px;
    width: auto;
}

.footer .address
{
    float: right;
    text-align: right;
    color: #fff;
    padding: 1em 0em;
}

.footer .plain-button, div.tablebuttons .plain-button
{
    color: #000;
    border: .5px solid #171717;
    background-color: #fff;
    letter-spacing: 0.5px;
    padding: 0.6em 1em;
    font-weight: bold;
    transition: all .25s ease-in-out;
}

div.tablebuttons .reset:hover .fa-undo
{
    color: #171717;
}

div.tablebuttons .plain-button
{
    display: inline-flex;
    margin-right: .5em;
    align-items: center;
}

.footer .plain-button:hover, div.tablebuttons .plain-button:hover
{
    background-color: #000;
    color: #fff;
}

.footer .address a, .footer .address a:hover
{
    color: #fff;
} 

footer
{
    width: 100%;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    background-color: #fff;
}

.clearfix
{
    clear: both;
}

@media (max-width: 1200px)
{

    .headercenter
    {
        font-size: 22px;
        line-height: 65px;
    }
    
    .headerright
    {
        font-size: 1em;
    }
}

@media (max-width: 600px)
{   
    .main-content
    {
        padding: 2.5em 2.5em 7em 2.5em;
        margin: 0 auto;
    }

    .headerright, .headerleft, .headercenter
    {
        display: block;
        float: none;
        width: 100%;
        text-align: center;
    }
    
    .headerright, .headerleft
    {
        padding: 1em;
    }
}

@media (max-width: 900px)
{
    .main-content .column
    {
        margin: 0 auto;
        width: 80%;
        display: block;
    }
}

.column a img
{
    max-height: 300px;
    height: auto;
    width: auto;
    max-width: 300px;
}

@media (max-width:480px)
{
    .footer p
    {
        font-size:18px;
        padding-left:15px;
    }

    .title
    {
        display: block;
        width: 100%;
    }
}

ul.list li
{
    font-size: 1.6em;
    padding: .25em 1em;
    margin-left: 1em;
}

.main-content-width2
{
    padding: 1em 0em;
    position: relative;
    margin: 2.5em 5em;
}

.breadcrumb a
{
    color: #000;
    opacity: .7;
}

.breadcrumb a:hover
{
    color: #000;
    opacity: 1;
}

.breadcrumb .returnbutton
{
    position: absolute;
    right: 1.5em;
    font-size: 1.5em;
}

.main-content-width2 div.tablebuttons
{
    position: absolute;
    right: 0;
    display: inline-block;
    padding-right: 0;
    padding-bottom: 0em;
}

.breadcrumb
{
    background-color: transparent;
    position: relative;
    background: transparent;
    width: 100%;
    padding: 0;
}

.breadcrumb .fa-home
{
    font-size: 1.5em;
    padding-right: .5em;
}

.breadcrumb .fa-chevron-right
{
    padding: .3em .5em 0 0;
}

.table td .fa-youtube, .table td .fa-file-pdf
{
    color: red;
    padding: 0;
    opacity: 1;
}

.breadcrumb .link
{
    font-weight: bold;
    padding: 0 .5em 0 0;
}

.breadcrumb .link a:hover, a.prettyunderline
{
    text-decoration: none;
}

.breadcrumb .link a:after, a.prettyunderline:after
{
    position: absolute;
    opacity: 0;
    transform: translateY(0);
    content:'';
    top: 1.4em;
    height: 2px;
    background-color: #000;
    left: 0;
    right: 0;
    width: 0%;
    margin: 0 auto;
    transition: 0.2s ease-in-out;
}

.breadcrumb .link a:hover:after, a.prettyunderline:hover:after
{
    opacity: 1;
    width: 100%;
}

.breadcrumb .active
{
    font-weight: bold;
    padding: 0 0.5em 0 0;
}

.leftsidehome
{
    display: inline-block;
    width: 28%;
    vertical-align: top;
    padding: 0;
}

.rightsidehome
{
    display: inline-block;
    vertical-align: top;
    width: 70%;
    text-align: center;
}

figure
{
    margin: 1em 0;
}

figcaption
{
    margin: 0 auto;
    width: fit-content;
    padding: 8px;
    white-space: nowrap;
    font-weight: bold;
}

@media (max-width: 1000px)
{
    .rightsidehome, .leftsidehome
    {
        text-align: center;
        width: 100%;
        display: block;
    }
}

.responsiveimg {
    width: 100%
    height: auto;
}

.imagediv
{
    position: absolute;
    background-color: #ccc;
    cursor: pointer;
    background-color: rgba(0,0,0,0);
}

.imagediv abbr
{
    display: none;
    width: max-content;
    font-weight: bold;
    opacity: .9;
    font-size: .85em;
}

.imagediv:hover
{
/*    background-color: rgba(0,0,0,.15);*/
}

.imagediv:hover abbr
{
    display: block;
    position: absolute;
    transition: transform 1000ms ease-in-out;
    top: -2em;
    left: 35%;
    background: black;
    color: white;
    padding: .5em;
}

.btn-primary
{
    font-weight: bold;
    font-size: 1em;
}

.btn-primary.black
{
    background-color: rgba(77,77,77,1);
    color: white;
    transition: background-color 200ms linear;
    border-color: rgba(77,77,77,1);
}

.btn-primary.black:hover
{
    background-color: rgba(0,0,0,.9);
    border-color: rgba(0,0,0,.9);
}

.btn-primary.black:active, .btn-primary.black:not(:disabled):not(.disabled):active
{
    background-color: rgba(0,0,0,1);
    border-color: #000;
}

.btn-primary.black:focus, .btn-primary.black:not(:disabled):not(.disabled):active:focus
{
    border-color: rgba(0,0,0,.9);
    box-shadow: none;
}

model-viewer .btn-danger
{
    font-weight: bold;
    display: block;
    width: 15%;
    margin: 1em;
}

.homeimage
{
    padding: 1em;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: #ccc 5px 5px 5px;
}

@media (max-width: 600px)
{
    #homeimage
    {
        margin-bottom: 10em;
    }
}
.modal
{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 310000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.75); /* Black w/ opacity */
}

.modaltop
{
    width: 100%;
    background-color: #171717;
    padding: 0.5em;
}

.modal-window
{
  background-color: #fefefe;
  margin: auto;
  width: fit-content;
  max-width: 80%;
  box-shadow: 0 0 0 10px rgba(0,0,0,.35);
}

.modaltitle
{
    font-weight: bold;
    color: white;
    display: inline-block;
    font-size: 1.2em;
    padding: 0em 0 0 0.8em;
}

.remodal-close
{
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 38px;
  font-size: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: #cccccc;
}

.remodal-close
{
  float: right;
  position: initial;
}

.contactdiv
{
    display: inline-block;
    width: 49%;
    vertical-align: top;
}

@media (max-width: 600px)
{
    .contactdiv 
    {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
}

.contactdiv .contactgroup
{
    display: block;
    padding: 1em;
    color: #171717;
}

.contactdiv h2, .contactdiv p
{
    padding: 0;
    margin: 0;
}

.contactdiv h4
{
    font-size: 1.3em;
    line-height: 1.3em;
}

.caution, .warning, .danger, .note, .info
{
    border: 1px solid black;
    width: 70%;
    margin: 1em auto;
    text-align: center;
}

.caution, .note, .warning, .danger
{
    background-color: #ffffe0;
}

.caution span, .warning span, .danger span, .note span, .info span
{
    display: block;
    padding: 10px 15px;
}

.caution::before
{
    content: 'CAUTION';
    background-color: #ffff00;
    color: black;
    background-image: url('/images/caution.png');
}

.warning::before
{
    content: 'WARNING';
    background-color: #ffc000;
    color: black;
    background-image: url('/images/caution.png');
}

.danger::before
{
    content: 'DANGER';
    background-color: #ff0000;
    color: white;
    background-image: url('/images/caution.png');
}

.note::before
{
    content: 'NOTE';
    background-color: #ffffe0;
    color: black;
    background-image: url('/images/note_icon.png');
}

.info::before
{
    content: 'INFORMATION';
    background-color: #00FF00;
    color: black;
    background-image: url('/images/tool_tip.png');
}

.caution::before, .warning::before, .danger::before, .note::before, .info::before
{
    -webkit-print-color-adjust: exact;
    text-align: center;
    display: block;
    font-weight: bold;
    padding: .5em 1em .5em 4em;
    background-repeat: no-repeat;
    background-size: 2em;
    font-size: 1.1em;
}

.note::before, .caution::before, .warning::before, .danger::before
{
    border-bottom: 1px solid #000;
    background-position: 46.5% center;
}

.caution p, .note p, .info p, .warning p, .danger p
{
    font-style: italic;
    padding: .5em;
}

@media (max-width: 1100px)
{
    .caution::before
    {
        background-position: 44% center;
    }
    
    .warning::before, .danger::before
    {
        background-position: 44% center;
    }
}

@media (max-width: 768px)
{
    .note::before
    {
        background-position: 44% center;
    }
    
    .caution::before
    {
        background-position: 41% center;
    }
    
    .warning::before, .danger::before
    {
        background-position: 42% center;
    }
}

@media (max-width: 600px)
{
    .caution::before, .danger::before
    {
        background-position: 40% center;
    }
    
    .warning::before
    {
        background-position: 37% center;
    }
}

@media (max-width: 450px)
{
    .caution::before
    {
        background-position: 38.5% center;
    }
    
    .note::before
    {
        background-position: 40% center;
    }
    
    .warning::before, .danger::before
    {
        background-position: 36% center;
    }
}

@media (max-width: 375px)
{
    .caution::before
    {
        background-position: 36% center;
    }
    
    .warning::before, .danger::before
    {
        background-position: 33.5% center;
    }
}

@media (max-width: 300px)
{
    .note::before
    {
        background-position: 37.5%;
    }
    
    .caution::before
    {
        background-position: 30% center;
    }
    
    .warning::before, .danger::before
    {
        background-position: 28% center;
    }
}

.caution .listarrow, .note .listarrow, .warning .listarrow, .danger .listarrow
{
    text-indent: -3em;
    margin-left: 4em;
}

.caution .listarrow::before, .note .listarrow::before, .warning .listarrow::before, .danger .listarrow::before
{
    content: "\2192";
    padding-right: 1em;
    padding-left: 1em;
}

ul.caution, ul.warning, ul.danger, ul.note
{
    padding-left: 0px;
}

.caution li, .warning li, .danger li, .note li
{
    margin-left: 50px;
}

.navbar
{
    padding: 0;
    background-color: #171717;
}

.navbar-nav
{
    margin: 0 auto;
    flex-direction: unset;
    width: 100%;
    display: block;
    text-align: center;
}
    
.navbar-nav .nav-item
{
    padding: 0em .2em;
    display: inline-block;
}
.navbar-light .navbar-nav .nav-link
{
    color: rgba(255,255,255,0.9);
    font-size: 1em;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover
{
    color: rgba(255,255,255,1);
}

.navbar-light .navbar-nav .nav-link:active
{
    font-weight: 800;
}

.navbar-collapse
{
    background-color: #171717;
}

.navbar-nav ul.dropdown-menu .dropdown-submenu:hover .dropdown-menu
{
/*    display: block;*/
}

@media screen and (max-width: 767px)
{
    .navbar-nav
    {
        margin: 0 1em;
    }
    
    .navbar-nav .nav-item
    {
        display: block;
        text-align: left;
    }
}

.dropdown-submenu
{
    position:relative;
}
.dropdown-submenu > .dropdown-menu
{
    top: 0;
    left: 100%;
    margin-top:-6px;
}

.dropdown-menu > li > a:hover:after
{
    text-decoration: underline;
    transform: rotate(-90deg);
} 

.navbar-light .navbar-toggler
{
    color: rgba(255,255,255,1);
    border-color: rgba(255,255,255,.1);
}

.navbar-light .navbar-toggler
{
    color: rgba(255,255,255,1);
    padding: 4px 8px;
    border-color: rgba(255,255,255,.2);
    margin: 0.4em 2em;
}

.navbar-toggler div
{
    font-size: .8em;
    padding-top: .5em;
}

button#search-btn
{
     background: transparent;
     border: none;
     padding: 0.6em 0em;
}

@media screen and (max-width: 767px)
{
    button#search-btn
    {
        position: relative;
        right: unset;
    }
}

.fas
{
    padding-right: .3em;
}

.fas.fa-chart-line:hover
{
    color: #243782;
}

.red
{
    color: red;
}

.orange
{
    color: orange;
    font-weight: bold;
}

.main-content ul li
{
    padding: .3em 0;
}

.table tr:hover
{
    cursor: pointer;
}

@media screen and (max-width: 800px)
{
    .table
    {
        font-size: .8em;
    }
    
    .tablesorter-bootstrap tfoot td, .tablesorter-bootstrap tfoot th, .tablesorter-bootstrap thead td, .tablesorter-bootstrap thead th
    {
        font-size: 1em;
    }
}

.tileBtn, .detailBtn
{
    width: auto;
    min-width: 200px;
    display: inline-block;
    padding: 10px;
    margin: 0 1px 4px 1px;
    text-decoration: none;
    cursor: pointer;
    border: solid 1px #243782;
    background-color: #000;
    box-shadow: 2px 2px 12px rgba(0,0,0,.18);
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.2s ease-in-out;
}

#expander
{
    float: right;
    text-align: center;
}

a.tileBtn, #expander a, a.tileButton, a.detailBtn
{
    color: white;
    text-decoration: none;
}

a.tileBtn:hover, #expander a:hover, a.tileBtn:hover .fa-file-alt, a.tileBtn:hover .fa-redo-alt, #expander:hover,
#expander:hover .fa-expand-arrows-alt, a.tileBtn:hover .fa-chalkboard-teacher, a.tileBtn:hover .fa-hard-hat,
a.tileBtn:focus, #expander a:focus, a.tileBtn:focus .fa-file-alt, a.tileBtn:focus .fa-redo-alt, #expander:focus,
#expander:focus .fa-expand-arrows-alt, a.tileBtn:focus .fa-chalkboard-teacher, a.tileBtn:focus .fa-hard-hat,
.detailBtn:hover, .detailBtn:focus
{
    color: #000;
    background: #fff;
}

a.tileBtn .fa-file-alt
{
    color: white;
    opacity: 1;
}

@media screen and (max-width: 500px)
{
    .tileBtn
    {
        width: 100%;
        font-size: 2em;
        margin: .3em 0;
    }
    
    .tileBtn:first-child
    {
        margin: 0em 0 .3em;
    }
    
    #expander
    {
        width: 100%;
        text-align: left;
        float: unset;
    }
}

.tileText
{
    border: solid 1px #d4d4d4;
    box-shadow: 2px 2px 5px #d4d4d4;
    max-width: 100%;
    width: fit-content;
    padding: 1em;
    margin: 0.5em 0em;
    display: none;
    width: 100%;
}

table.content
{
    text-align: center;
    width: 100%;
}

table.content th
{
    padding-right: .5em;
    font-size: 1.1em;
}

table.content td
{
    text-align: left;
    padding: .1em;
    font-size: 1.1em;
    padding-left: .5em;
}

table.content tr:nth-child(odd) th, table.content tr:nth-child(odd)
{
    background-color: #ddd;
}

table.content tr:first-child
{
    border-top: 2px solid #000;
}

table.content tr
{
    border: 1px solid #ddd;
}

table.content tr:last-child
{
    border-bottom: 2px solid #000;
}

tr .headercolor, tr.headercolor
{
    color: #fff;
    background: #000;
    text-align: center;
}
tr.intervalcolor
{
    background-color: rgba(0,0,0,.15);
}

tr.contentTR, tr.intervalcolor
{
    border: 1px solid #000;
}

table.content .contentTR td, table.content tr.intervalcolor td
{
    text-align: left;
    vertical-align: middle;
    border: 1px solid #000000;
    padding: 0.5em;
}

.step_header_button
{
    box-shadow: 2px 2px 12px rgba(0,0,0,.18);
    display: block;
    width: 100%;
    padding: .5em 1.5em;
    border: 1px solid #243782;
    margin: 5px 0px;
    background-color: #000;
    border-radius: .5em;
    color: #fff;
    cursor: pointer;
    font-size: inherit;
    text-align: left;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
}

.step_header_button:hover
{
    background-color: rgba(0,0,0,.8);
}

p.steps
{
    margin: 3px 0px;
    display: inline-block;
    width: 90%;
    font-size: 1.3em;
}

.step_content
{
    display: none;
    border-radius: .5em;
    border: 1px solid rgba(0,0,0,.2);
}

.steptext
{
    display: inline-block;
    width: 48%;
    text-align: left;
    vertical-align: top;
    padding: 1em;
}

.stepimagevideo
{
    width: 80%;
    max-width: 800px;
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

@media screen and (max-width: 767px)
{
    .step:first-child
    {
        margin-top: 1em;
    }
    
    p.steps
    {
        font-size: 1.5em;
    }
    
    .steptext, .stepimagevideo
    {
        width: 100%;
        display: block;
        padding: 1em;
    }
}

.step_header_button .expandcollapse.expandcollapserotated
{
    transform: rotate(90deg);
    position: absolute;
    bottom: 0;
    padding: 0;
}

@media screen and (max-width: 767px)
{
    .step_header_button .expandcollapse.expandcollapserotated
    {
        right: 1.4em;
    }
}

.tablesorter-bootstrap:not(.table-dark)>tbody>tr.odd>td
{
    background-color: rgba(0,0,0,.05);
}

.tab
{
    overflow: hidden;
    width: fit-content;
}

.tab button
{
    background-color: #ccc;
    margin-top: 0.5em;
    border-top-right-radius: 1.5em;
    border: 1px solid #ccc;
    outline: none;
    cursor: pointer;
    padding: 0.7em;
    transition: 0.3s;
    font-family: 'Encode Sans Condensed', sans-serif;
    font-weight: bold;
}

.tab button.active
{
    background-color: #243782;
    color: white;
}

.tabcontent
{
    width: 100%;
    min-width: fit-content;
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
}

.tabcontentgroup
{
    display: block;
}

div.tablebuttons
{
    position: relative;
    width: 100%;
    text-align: right;
    cursor: pointer;
    opacity: 0.9;
    padding: .5em 0;
}

div.tablebuttons:hover
{
    opacity: 1;
}

div.tablebuttons img
{
    width: 30px;
}

.form-inline .custom-select
{
    width: auto;
    min-width: 100px;
}

.table a
{
    color: #212529;
}

.table a:hover
{
    color: #212529;
    text-decoration: none;
}

.table tr:hover
{
    font-size: 1.05em;
    color: #243782;
}

.tablesorter-bootstrap:not(.table-dark)>tbody>tr.even:hover>td,
.tablesorter-bootstrap:not(.table-dark)>tbody>tr.hover>td, .tablesorter-bootstrap:not(.table-dark)>tbody>tr.odd:hover>td,
.tablesorter-bootstrap:not(.table-dark)>tbody>tr.tablesorter-hasChildRow.even:hover~.tablesorter-childRow.even>td,
.tablesorter-bootstrap:not(.table-dark)>tbody>tr.tablesorter-hasChildRow.odd:hover~.tablesorter-childRow.odd>td
{
    transition: all .3s ease-in-out;
}

.fullpagevideo
{
    max-width: 800px;
    width: 100%;
    padding-top: 2em;
}

section.icons
{
    width: 100%;
    position: relative;
    padding: 1em;
    margin: 0 auto;
    text-align: center;
}

section.icons .icon
{
    position: relative;
    display: inline-block;
    max-width: 300px;
    width: fit-content;
    margin: 1em;
}

section.icons .icon a
{
    transition: all .3s ease-in-out;
    color: #fff;
    width: fit-content;
    border-radius: 1.2em;
    text-decoration: none;
    position: relative;
    display: block;
    box-shadow: 1px 1px 1px #243782;
    padding: 1em 2.5em;
    text-align: center;
    font-size: 150%;
    background-color: rgba(36,55,130, .7);
    margin: .5em auto;
}

@media screen and (max-width: 1025px)
{
    section.icons .icon a
    {
        width: 300px;
    }
}

section.icons .icon a:hover
{
    text-decoration: none;
    box-shadow: 3px 5px 5px rgba(0,0,0,.8);
    background-color: rgba(36,55,130, .5);
}

section.icons .icon a:hover .iconimage
{
    color: #243782;
}

section.icons .icon a.hover .icontext
{
    color: #fff;
    padding-top: .2em;
}

.fas.fa-file-archive, .fas.fa-file-pdf
{
    color: #243782;
    opacity: .7;
}

.fas.fa-file-alt:hover, .fas.fa-file-archive:hover, .fas.fa-file-pdf:hover
{
    opacity: 1;
}

@media screen and (max-width: 767px)
{
    .navbar-collapse
    {
        padding: 1em 0;
    }
    
    .navbar .dropdown-menu
    {
        min-width: 100%;
        background-color: transparent;
        border: none;
    }
    
    .navbar .dropdown-menu .dropdown-item
    {
        color: #fff;
    }
    
    .navbar .dropdown-menu .dropdown-item:hover, .navbar .dropdown-menu .dropdown-item:focus
    {
        background-color: rgba(0,0,0,.1);
    }
}

.tablesorter-bootstrap thead .tablesorter-header 
{
    vertical-align: middle;
}

a.downloadbutton, button.reset
{
    padding: 0.6em 2em;
    letter-spacing: 0.05em;
    font-size: 1em;
    color: #fff;
    background: #171717;
    border-radius: 0.3em;
    border: 0;
    text-decoration: none;
}

a.downloadbuttonright
{
    float: right;
    font-size: 0.5em;
}

button.reset, .tablebuttons a.downloadbuttonright
{
    font-size: 0.9em;
    padding: 0.4em 1em;
    margin: 0 0.5em;
    font-weight: bold;
}

a.downloadbutton:hover, .reset:hover
{
    color: #171717;
    background-color: #fff;
    border: 1px solid #171717;
    box-shadow: 3px 3px 3px rgba(0,0,0,.5);
    text-decoration: none;
}

@media screen and (max-width: 767px)
{
    a.downloadbuttonright
    {
        margin: 1em 0em;
        text-align: center;
        width: 100%;
    }
}

.empty
{
    height: 0;
}

section.split
{
    display: table;
    width: 100%;
}

section.split .leftside
{
    width: 50%;
    display: table-cell;
    padding: 0em 2em 1em 0;
    vertical-align: top;
}

section.split .rightside
{
    width: 50%;
    display: table-cell;
    padding: 0em 0em 1em 2em;
    vertical-align: top;
}

section.split .rightside .table
{
    margin: 2em 1em 2em 0em;
}

section.split figure
{
    padding: 1em 0em;
}

section.split .caution, section.split .note, section.split .danger, section.split .warning, section.split .info
{
    width: 100%;
}

section.split .caution::before, section.split .warning::before, section.split .danger::before, section.split .note::before,
section.split .info::before
{
    padding: 0.5em 1em 0.5em 6em;
}

@media screen and (max-width: 1000px)
{
    section.split .leftside, section.split .rightside
    {
        display: block;
        width: 100%;
        padding: 1em 0em;
    }
    
    section.split .rightside .table
    {
        margin: 0em 0em 5em 0em;
    }
    
    .tabcontent
    {
        margin-bottom: 5em;
    }
}

.callout-container
{
    position: relative;
    display: inline-block;
}

.callout-box
{
    position: absolute;
}

.callout-box:hover
{
    border: 1px solid rgba(255,0,0,1);
    cursor: pointer;
}

.part_container
{
    width: 100%;
    padding: 15px;
    border: solid 1px #d4d4d4;
    box-shadow: 2px 2px 5px rgba(0,0,0,.18);
    border-radius: 5px;
    text-align: center;
}

.part_container table.content
{
    margin: 1em auto;
}

.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter
{
    width: -webkit-fill-available;
}

.powertrainlogo
{
    max-height: 65px;
}

.headerleft a:hover
{
    text-decoration: none;
}

@media (max-width: 991px)
{
    .headerleft img
    {
        max-width: 100px;
    }
    
    .navbar-nav
    {
        padding: 0 2.5em;
    }
    
    .navbar-nav .nav-item
    {
        padding: 0.25em 0em;
        font-size: 1.3em;
        text-align: left;
        width: 100%;
    }
    
    .navbar .dropdown-menu, .navbar .dropdown-item
    {
        background: transparent;
        color: #fff;
    }
    
    .navbar .dropdown-item.disabled
    {
        color: #777;
    }
    
    .navbar .dropdown-item:active
    {
        background: transparent;
    }
    
    .navbar .dropdown-item:focus, .navbar .dropdown-item:hover
    {
        background: transparent;
    }
    
    .navbar .dropdown-menu a:link
    {
        color: #fff;
    }
    
    .navbar .dropdown-menu .dropdown-item
    {
        font-size: 1.1em;
        padding: 1em;
    }
    
    .navbar-nav ul.dropdown-menu
    {
        margin: 0em 2.5em;
        background-color: rgba(0,0,0,.5);
    }
    
    .navbar-nav ul.dropdown-menu .dropdown-submenu .dropdown-menu
    {
        margin: 0em 5em;
    }
}

.maxcontainercentered
{
    width: 100%;
    text-align: center;
}

#modalpartwindow .modal-window
{
    width: min-content;
}

.form-control
{
    -webkit-appearance: button;
    -moz-appearance: button;
}

table.content thead tr.headercolor.black th
{
    background-color: #000;
}

table.content thead tr.headercolor.black td
{
    background-color: #000;
    text-align: center;
}

table.content tfoot tr.contentTR td
{
    background-color: #fff;
}

table.content tbody tr:nth-child(even)
{
    background-color: #fff;
}

button.robot
{
    display: block;
    width: 2em;
    height: 2em;
    border-radius: 1em;
    font-weight: bold;
    padding: 0;
    border: 1px solid #ffffff;
    background-color: rgba(255,0,0,1);
    box-sizing: border-box;
    color: #ffffff;
    font-size: 1.5em;
    cursor: pointer;
}

.table .thead-dark th
{
    color: #fff;
    background-color: #343a40;
    border-color: #454d55;
}

.modelpopupdiv
{
    display: table;
    width: 100%;
}

.modelpopupdivrow
{
    display: table-row;
}

.modelpopupdivcell
{
    display: table-cell;
    width: 50%;
    vertical-align: top;
}

.modelpopupdivcell.middle
{
    vertical-align: middle;
}

.modelpopupdivcell h4
{
    padding: 1em 0 0 1em;
    margin-bottom: 0em;
    font-size: 1em;
    font-weight: bold;
}

.modelpopupdivcell p
{
    padding: 0 0 0 1em;
    margin-top: 0;
}

.modelpopupdivcell p:last-child
{
    padding: 0 0 1em 1em;
}

@media screen and (max-width: 767px)
{
    .modelpopupdiv
    {
        display: block;
    }
    
    .modelpopupdivcell
    {
        width: 100%;
        display: block;
    }
}

.modelpopupdivcell button
{
    background: transparent;
    position: absolute;
    border: none;
}

.explodebutton
{
    position: absolute;
    width: fit-content;
    right: 5%;
    font-size: 1em;
    background-color: #000;
    height: auto;
    font-size: 1.2em;
    color: #fff;
    z-index: 99;
}

.returnlink
{
    position: absolute;
    bottom: 2em;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 767px)
{
    .returnlink
    {
        bottom: unset;
        position: relative;
        display: block;
        padding-bottom: 1em;
    }
    
    .explodebutton
    {
        position: relative;
        bottom: unset;
        right: unset;
        margin: 0 auto;
    }
}

.annotation
{
    background-color: #888888;
    position: absolute;
    transform: translate(10px, 10px);
    border-radius: 10px;
    padding: 10px;
    display: none;
    min-width: min-content;
}

.annotation table
{
    width: -webkit-fill-available;
    border-radius: .5em;
    border: 1px solid #ccc;
    color: #000;
    margin: 0em 1em;
}

.annotation table th
{
    font-weight: bold;
}

.annotation table tr:nth-child(odd)
{
    background-color: #eee;
}

.annotation table td
{
    text-align: left;
    padding-left: .5em;
}

.tooltip.show
{
    z-index: 320000;
}

.video-container
{
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after
{
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fullscreen
{
    font-size: 20px;
}

model-viewer, .fullscreendiv
{
    background-color: #fff;
}

.buttondiv
{
    width: 100%;
    text-align: center;
}

.exitfullscreenbutton
{
    display: none;
    padding: .5em 1em;
    margin: 1em auto;
    font-size: 20px;
}

.center, div.tablebuttons.center
{
    text-align: center;
}

.hide
{
    display: none;
}

@media screen and (max-width: 600px)
{
    .tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter
    {
        width: 100%;
    }

    img {
        width: 420px;
    }
/*    
    .form-control
    {
        padding: .1em;
        font-size: .8em;
        white-space: pre-line;
    }*/
}

/*@media screen and (max-width: 400px)
{
    .form-control
    {
        padding: .05em;
        font-size: .6em;
    }
}*/