﻿/* ==========================================================================
   Mixin
   ========================================================================== */
/* align element */
/* ==========================================================================
   General Variables
   ========================================================================== */
/* light theme */
/*$color_PrimaryBorder: #0388c7;*/
/*$color_SecondBorder: #93ca42;*/
/* dark theme */
/*
$color_primaryBg: #000;
$color_PrimaryFont: #FFF;
$color_Icon: #d8f2fe;
$color_PrimaryBorder_Dark: #d8f2fe;
$color_Placeholder: #a4a4a4;
*/
/* ==========================================================================
   General Styles
   ========================================================================== */
html, body {
  height: 100%; }

body {
  font-family: arial; }

.backgroundImg {
  background-image: url("img/background.jpg");
  background-position: 0 0;
  background-repeat: repeat-x;
  -webkit-animation: animatedBackground 90s linear infinite;
  -moz-animation: animatedBackground 90s linear infinite;
  -o-animation: animatedBackground 90s linear infinite;
  animation: animatedBackground 90s linear infinite; }

@-webkit-keyframes animatedBackground {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 100% 0; } }

@-moz-keyframes animatedBackground {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 100% 0; } }

@-o-keyframes animatedBackground {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 100% 0; } }

@keyframes animatedBackground {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 100% 0; } }

.bannerImg {
  position: absolute;
  background: transparent url("img/headerbanner.png") repeat-x scroll left top;
  background-position: 0 0;
  width: 100%;
  z-index: 10; }

.logoImg {
  z-index: 20;
  width: 55%; }
  @media (max-width: 768px) {
    .logoImg {
      width: 120%; } }

.jumboBox.vertical-center {
  margin-bottom: 0;
  /* Remove the default bottom margin of .jumboBox */
  background-color: transparent; }

.vertical-center {
  min-height: 100%;
  /* Fallback for vh unit */
  min-height: 100vh;
  /* Make it a flex container */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* In legacy web browsers such as Firefox 9
       we need to specify the width of the flex container */
  width: 100%;
  /* Align the bootstrap's container vertically */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center; }

.jumboBox > div {
  display: table-row; }

.middleBox, .primaryBorderBox, .secondBorderBox {
  background-color: #FFF;
  color: #000;
  text-align: left;
  padding: 10px; }

.primaryBgBox {
  background-color: #579101;
  color: #FFF;
  text-align: left;
  padding: 10px; }
  .primaryBgBox .table-hover > tbody > tr:hover, .primaryBgBox .table-hover > tbody > tr.selected {
    cursor: pointer;
    color: #000;
    background-color: #e8ffc5; }
  .primaryBgBox .table-hover > tbody > tr.diff {
    color: #000;
    background-color: #FFF; }
    .primaryBgBox .table-hover > tbody > tr.diff:hover {
      background-color: #e8ffc5; }

.primaryBorderBox {
  border: 1px solid #579101; }

.primaryButton {
  background-color: #579101; }
  .primaryButton:hover {
    background-color: #75c401; }

.secondBorderBox {
  border: 1px solid #0388c7; }

.secondButton {
  background-color: #0388c7; }
  .secondButton:hover {
    background-color: #04aaf9; }

.chkChecked {
  color: #579101; }

.form-group > label {
  font-weight: normal;
  padding-right: 0; }

h4 small {
  color: #FFF; }

.top_content {
  position: absolute;
  top: 5px;
  right: 5px; }

.bottom_content {
  position: absolute;
  bottom: 5px;
  right: 5px; }

.accordion-toggle .panel-title:after {
  /* symbol for "opening" panels */
  font-family: 'FontAwesome';
  content: '\f107';
  float: right;
  color: grey; }

.accordion-toggle.collapsed .panel-title:after {
  /* symbol for "collapsed" panels */
  content: '\f105'; }

.panel-bg {
  background-color: #ececec; }

.panel-title {
  font-size: 0.9em; }

.panel-body {
  font-size: 1.0em; }

.ui-dialog .ui-dialog-titlebar-close {
  font-family: 'FontAwesome';
  content: '\f107'; }

.modal-body {
  max-height: calc(100vh - 210px);
  overflow-y: auto; }

/* ==========================================================================
   Login Page
   ========================================================================== */
.mainIcon {
  color: #0388c7; }

.iconTab {
  color: #0388c7; }

.iconLabel {
  margin: 0;
  padding: 0; }

.loginTextbox {
  border: none;
  border-bottom: 1px solid #579101;
  width: 100%; }
  .loginTextbox:focus {
    outline: none;
    border-bottom: 1px solid #579101; }

.goIcon {
  -webkit-filter: drop-shadow(5px 5px 5px #808080);
  filter: drop-shadow(5px 5px 5px #808080);
  margin: 0 -10px 20px 0; }
  .goIcon:active {
    margin-top: 1px;
    -webkit-filter: none;
    filter: none; }

::-webkit-input-placeholder {
  color: #808080; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #808080; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #808080; }

:-ms-input-placeholder {
  color: #808080; }

/* selection buttons in login page */
.drawBorderDiv {
  float: left;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 50px;
  display: table;
  padding: 11px 9px;
  border: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: center;
  color: #FFF;
  background-color: #0388c7;
  text-decoration: none; }
  .drawBorderDiv span {
    position: relative;
    z-index: 1;
    line-height: 23px;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease; }
  .drawBorderDiv .btnBefore, .drawBorderDiv .btnAfter {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border: 0 solid #0388c7;
    -webkit-transition: 0;
    -moz-transition: 0;
    -o-transition: 0;
    transition: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    /*-o-box-sizing: $type;
        -ms-box-sizing: $type;*/
    box-sizing: border-box; }
  .drawBorderDiv .btnBefore {
    right: 0;
    bottom: 0; }
  .drawBorderDiv .btnAfter {
    left: 0;
    top: 0; }
  .drawBorderDiv:hover {
    cursor: pointer;
    background-color: #FFF !important; }
  .drawBorderDiv:hover span {
    color: #343434; }
  .drawBorderDiv:hover .btnBefore, .drawBorderDiv:hover .btnAfter {
    height: 100%;
    width: 100%;
    transition: width 0.5s ease, height 0.5s ease 0.5s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
    -webkit-transition: width 0.5s ease, height 0.5s ease 0.5s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
    -moz-transition: width 0.5s ease, height 0.5s ease 0.5s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
    -o-transition: width 0.5s ease, height 0.5s ease 0.5s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s; }
  .drawBorderDiv:hover .btnBefore {
    border-width: 0 0 1px 1px; }
  .drawBorderDiv:hover .btnAfter {
    border-width: 1px 1px 0 0; }
  @media (min-width: 768px) {
    .drawBorderDiv {
      width: 100%; } }

.drawBorderDivClick {
  background-color: #FFF;
  color: #0388c7;
  border-right: 1px solid #0388c7; }
  .drawBorderDivClick:hover {
    cursor: pointer;
    background-color: #FFF !important; }
  .drawBorderDivClick:hover span {
    color: #343434; }
  .drawBorderDivClick:hover .btnBefore, .drawBorderDivClick:hover .btnAfter {
    height: 100%;
    width: 100%;
    transition: width 0.5s ease, height 0.5s ease 0.5s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
    -webkit-transition: width 0.5s ease, height 0.5s ease 0.5s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
    -moz-transition: width 0.5s ease, height 0.5s ease 0.5s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
    -o-transition: width 0.5s ease, height 0.5s ease 0.5s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s; }
  .drawBorderDivClick:hover .btnBefore {
    border-width: 0 0 1px 1px; }
  .drawBorderDivClick:hover .btnAfter {
    border-width: 1px 1px 0 0; }

@media (min-width: 768px) {
  #selectionBtnArea {
    margin-top: 5px;
    padding: 0;
    margin-right: 5px; }
  #divCreateAcc {
    margin-top: 9px; } }

/* ==========================================================================
   table
   ========================================================================== */
table.tableSection {
  display: table;
  width: 100%; }
  table.tableSection thead, table.tableSection tbody {
    float: left;
    width: 100%; }
  table.tableSection tbody {
    overflow: auto;
    overflow-x: hidden; }
  table.tableSection tr {
    width: 100%;
    display: table;
    text-align: left; }
  table.tableSection th, table.tableSection td {
    width: 25%; }

table.tableSection2 {
  display: table;
  width: 100%; }
  table.tableSection2 thead, table.tableSection2 tbody {
    float: left;
    width: 100%; }
  table.tableSection2 tbody {
    overflow: auto;
    overflow-x: hidden; }
  table.tableSection2 tr {
    width: 100%;
    display: table;
    text-align: left; }
  table.tableSection2 th, table.tableSection2 td {
    width: 15%; }
  table.tableSection2 th.smallColumn, table.tableSection2 td.smallColumn {
    width: 13%; }
  table.tableSection2 th.BigColumn, table.tableSection2 td.BigColumn {
    width: 21%; }

table.tableSection3 {
  display: table;
  width: 100%; }
  table.tableSection3 thead, table.tableSection3 tbody {
    float: left;
    width: 100%; }
  table.tableSection3 tbody {
    overflow: auto;
    overflow-x: hidden; }
  table.tableSection3 tr {
    width: 100%;
    display: table;
    text-align: left; }
  table.tableSection3 th, table.tableSection3 td {
    width: 14%; }
  table.tableSection3 th.smallColumn, table.tableSection3 td.smallColumn {
    width: 12%; }
  table.tableSection3 th.DateColumn, table.tableSection3 td.DateColumn {
    width: 18%; }

table.tableSection4 {
  display: table;
  width: 100%; }
  table.tableSection4 thead, table.tableSection4 tbody {
    float: left;
    width: 100%; }
  table.tableSection4 tbody {
    overflow: auto;
    overflow-x: hidden; }
  table.tableSection4 th, table.tableSection4 tr {
    width: 100%;
    display: table;
    text-align: left; }
  table.tableSection4 th, table.tableSection4 td {
    width: 20%; }

table.tableSection5 {
  display: table;
  width: 100%; }
  table.tableSection5 thead, table.tableSection5 tbody {
    float: left;
    width: 100%; }
  table.tableSection5 tbody {
    overflow: auto;
    overflow-x: hidden; }
  table.tableSection5 tr {
    width: 100%;
    display: table;
    text-align: left; }
  table.tableSection5 th, table.tableSection5 td {
    width: 14%;
    vertical-align: middle !important; }
  table.tableSection5 th.smallColumn, table.tableSection5 td.smallColumn {
    width: 10%; }
  table.tableSection5 th.medColumn, table.tableSection5 td.medColumn {
    width: 17%; }
  table.tableSection5 th.BigColumn, table.tableSection5 td.BigColumn {
    width: 17%; }

tr.depotHeading {
  background-color: #457400; }

/* ==========================================================================
   nav bar
   ========================================================================== */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus,
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: transparent;
  border: none; }

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    background-color: #FFF;
    position: fixed;
    right: 0; } }

/* ==========================================================================
   dialog box
   ========================================================================== */
#dialog-link {
  padding: 0.4em 1em 0.4em 20px;
  text-decoration: none;
  position: relative; }
  #dialog-link span.ui-icon {
    margin: 0 5px 0 0;
    position: absolute;
    left: .2em;
    top: 50%;
    margin-top: -8px; }

.divHistory {
  margin-left: 30px; }

.divDetail {
  margin-left: 15px; }

@media (max-width: 768px) {
  .divHistory, .divDetail {
    margin: 0;
    padding: 0; } }

.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(25%);
  -ms-transform: translateY(25%);
  transform: translateY(25%);
}