/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 7-Jul-2014, 7:44:26 PM
    Author     : Kaiser
*/


.responsive > .responsive-pusher {
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  /*min-height: 100%;*/
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  z-index: 2;
}

body.responsive > .responsive-pusher {
  background: #FFFFFF;
}

/* Pusher should inherit background from context */

.responsive > .responsive-pusher {
  background: inherit;
}

/*--------------
     Dimmer
---------------*/

.responsive > .responsive-pusher:after {
  position: fixed;
  top: 0px;
  right: 0px;
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  will-change: opacity;
  z-index: 1000;
}

/* 
.pushable{
    height:100%;
    overflow-x:hidden;
    padding:0!important
    padding-top: 0.2em !important;
} */

.main.container{
    max-width: 1024px !important;
    width: auto !important;
    padding: 4em 0 0em;
    left: 0;
    /*margin-right: 4em !important;*/
    position: relative;
}


/* MENU SETTINGS */
.left-column{
    position: relative;
    float:left;
    /*width:250px;*/
}
.right-column{
    position: relative;
    float:left;
    /*min-width:810px;*/
    /*min-width: 0; */
    -moz-box-flex: 1;
    flex: 1 1 auto; 
    min-width: 0;
}
.mainMenu{
        /*overflow: hidden;*/
        float:left;
        width:100%;
        height:50px;
        background-color:#FFFFFF;
        /*box-shadow: 0 2px 1px #BCBCBC;*/
        
        background: rgb(255,255,255); /* Old browsers */
        background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(244,244,244,1) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(244,244,244,1))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(244,244,244,1) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(244,244,244,1) 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(244,244,244,1) 100%); /* IE10+ */
        background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(244,244,244,1) 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f4f4f4',GradientType=0 ); /* IE6-9 */

}

#menu {
    width: auto;
    float:right;
    margin: 0;
    /*padding: 10px 0px 0px 0px;*/
    list-style: none;
    
}

#menu li {
    float: left;
    padding: 0 0 10px 0;
    position: relative;
}

#menu a {
    float: left;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform:uppercase;
    text-decoration: none;
    color: #444E5A;
    display: inline-block;
    font-size: .85em;
    height: 40px;
    line-height: 45px;
    padding: 0 20px 0 20px;
    position: relative;
    /*border-right: 1px solid #E1E1E1;*/
    
}

#menu li:last-child a {
    border-right: 0px;
    
}

#menu li:hover > a {
    color: #ff920a;
    border-bottom:2px solid #FF920a;
}
#menu li:hover {
}

*html #menu li a:hover { /* IE6 */
    color: #404040;
    text-shadow: 0 1px 0 #dcdcdc;
}

#menu li:hover > ul {
    display: block;
}

/* Sub-menu */
#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    width:inherit;
    top: 50px;
    left: 0;
    z-index: 99999;    
    background-color: rgba(255,255,255,1);   
    /*border-left:1px solid #DCDCDC;*/
    border-bottom:1px solid #DCDCDC;
    /*border-right:1px solid #DCDCDC;*/
    /*background-image: linear-gradient(#444, #111);    */
    -moz-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;

}

#menu ul li {
    float: none;
    margin: 0;
    padding: 0;
    display: block;      
    box-shadow: 0 1px 0 #EFEFEF, 
                0 2px 0 #F3F3F3;
}

#menu ul li:last-child { 
    box-shadow: none;
}

#menu ul a {    
    padding: 10px;
    display: block;
    white-space: nowrap;
    float: none;
    font-size:.9em;
    text-transform: capitalize;
    font-weight: normal;
    height: 30px;
    line-height: 50px;
}

*html #menu ul a { /* IE6 */   
    width: 150px;
    height: 50px;
    line-height: 55px;
}

*:first-child+html #menu ul a { /* IE7 */    
    
    width: inherit;
    height: 40px;
    line-height: 55px;
}

#menu ul a:hover {
    border-bottom:0px solid #FF920a;
}


#menu ul li:first-child a {
    border-radius: 5px 5px 0 0;
}

#menu ul li:first-child a:after {
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #FF920A;
}

#menu ul li:first-child a:hover:after {
    /*border-bottom-color: #04acec; */
    
}

#menu ul li {
    border:0px solid #000;
}


#menu ul li:last-child a {
    border-radius: 0 0 5px 5px;
}

/* Clear floated elements */
#menu:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */

.irisShadow{
    position:relative;  
    width:70%;
    height:200px;
    background:#FFF;
    margin:10px auto;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.1) inset;
    box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.1) inset;
}

.irisShadow:before, .irisShadow:after{
    content:"";
    position:absolute; 
    z-index:-1;
    -webkit-box-shadow:0 0 10px rgba(0,0,0,0.8);
    -moz-box-shadow:0 0 10px rgba(0,0,0,0.8);
    box-shadow:0 0 10px rgba(0,0,0,0.8);
    top:50%;
    bottom:0;
    left:10px;
    right:10px;
    -moz-border-radius:100px / 10px;
    border-radius:100px / 10px;
}

ul.item_list li{
    list-style: none;
    line-height: 15px;
}
ul.item_list li{
    border-bottom: 1px solid #DFDFDF;
    line-height: 15px;
    padding: 10px;
}
ul.item_list li a{
    color: #333333;
    font-weight: normal;
}
ul.item_list li a:hover{
    font-weight: bold;
    color: #2C539E;
    text-decoration: none;
    padding: 0px;
}

.video-container { position:relative; }
.video-container video {
    position:relative;
    z-index:0;
}
.overlay {
    position:absolute;
    top:10px;
    left: 30%;
    margin-left: -30px;
    z-index:1;
}

@media only screen and (max-width: 767px) {
    .scanner-laser{
        position: absolute;
        margin: 10px;
        height: 5px;
        width: 5px;
    }
}

@media only screen and (min-width: 992px) {
    .scanner-laser{
        position: absolute;
        margin: 40px;
        height: 30px;
        width: 30px;
    }
}
.laser-leftTop{
    top: 0;
    left: 0;
    border-top: solid white 5px;
    border-left: solid white 5px;
}
.laser-leftBottom{
    bottom: 0;
    left: 0;
    border-bottom: solid white 5px;
    border-left: solid white 5px;
}
.laser-rightTop{
    top: 0;
    right: 0;
    border-top: solid white 5px;
    border-right: solid white 5px;
}
.laser-rightBottom{
    bottom: 0;
    right: 0;
    border-bottom: solid white 5px;
    border-right: solid white 5px;
}
