/* FONT DECLARTION */
@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helvetica.eot');
  src: url('../fonts/helvetica.eot?#iefix') format('embedded-opentype'),
    url('../fonts/helvetica.woff2') format('woff2'),
    url('../fonts/helvetica.woff') format('woff'),
    url('../fonts/helvetica.ttf') format('truetype'),
    url('../fonts/helvetica.svg#helveticaregular') format('svg');
  font-weight: normal;
  font-style: normal;

}
.errorEncoded {
    border: inset 4px red;
    background-color: red;
}
@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helvetica-bold.eot');
  src: url('../fonts/helvetica-bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/helvetica-bold.woff2') format('woff2'),
    url('../fonts/helvetica-bold.woff') format('woff'),
    url('../fonts/helvetica-bold.ttf') format('truetype'),
    url('../fonts/helvetica-bold.svg#helveticabold') format('svg');
  font-weight: bold;
  font-style: normal;

}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helvetica-light.eot');
  src: url('../fonts/helvetica-light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/helvetica-light.woff2') format('woff2'),
    url('../fonts/helvetica-light.woff') format('woff'),
    url('../fonts/helvetica-light.ttf') format('truetype'),
    url('../fonts/helvetica-light.svg#helveticalight') format('svg');
  font-weight: 300;
  font-style: normal;

}


/* BODY */
html,
body {
  margin: 0;
  height: 100%;
  overflow-x: hidden;
  min-width: 320px;
}



body {
  background: white;
  color: var(--font);
  background: var(--gray);
  font-family: 'Helvetica';
  font-weight: 300;
   overflow: visible;
}

@media (min-width: 992px) {

  body {
    padding-left: 100px;
  }

  body.menu-open {
    padding-left: 300px;
    margin-right: 0;
  }
}




/* TEXT, IMAGES AND LINKS */
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  font-weight: 700;
}

#content-wrapper ol,
#content-wrapper ul {
  padding-left: 2rem;
}

img,
svg {
  vertical-align: baseline;
}

hr {
  background-color: var(--form-label);
}

b,
strong,
.font-weight-bold {
  font-weight: bold;
}

a {
  text-decoration: none;
}

/* HTML ENTITIES*/
.table-navigation li {
  margin: 0 0.25rem;
}

.table-navigation li a {
  border-radius: 0.25rem;
  background: var(--dark-gray);
  color: var(--font)
}

.table-navigation li a:hover {
  background: var(--gray);
  color: var(--font)
}

.table-navigation li a.count {
  background: var(--white);
}

.table-navigation li a.count:hover {
  background: var(--gray);
}

table,
.table {
  border-radius: 0.25rem;
  border-color: var(--white);
  background: var(--white);
  overflow: hidden;
}

table thead th,
.table thead th,
table thead td,
.table thead td,
table tfoot td,
.table tfoot td {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
}

#content-wrapper table thead th a,
#content-wrapper .table thead th a,
#content-wrapper table thead td a,
#content-wrapper .table thead td a,
#content-wrapper table tfoot td a,
#content-wrapper .table tfoot td a,
table thead th a,
.table thead th a,
table thead td a,
.table thead td a,
table tfoot td a,
.table tfoot td a {
  color: var(--white);
}

#content-wrapper table thead th a:hover,
#content-wrapper .table thead th a:hover,
#content-wrapper table thead td a:hover,
#content-wrapper .table thead td a:hover,
#content-wrapper table tfoot td a:hover,
#content-wrapper .table tfoot td a:hover,
table thead th a:hover,
.table thead th a:hover,
table thead td a:hover,
.table thead td a:hover,
table tfoot td a:hover,
.table tfoot td a:hover {
  border-bottom: 1px solid var(--white);
}

table th,
.table th {
  font-weight: 700;
}


table>tbody>tr>th,
.table-striped>tbody>tr>th,
table>tbody>tr>td,
.table-striped>tbody>tr>td {
  background-color: var(--gray);
  box-shadow: none;
  border-top: none;
  border-bottom: 1px solid var(--dark-gray);
  vertical-align: middle;

}

table>tbody>tr:nth-of-type(odd)>th,
.table-striped>tbody>tr:nth-of-type(odd)>th,
table>tbody>tr:nth-of-type(odd)>td,
.table-striped>tbody>tr:nth-of-type(odd)>td {
  background-color: var(--white);
}

table>tbody>tr:last-child>th,
.table-striped>tbody>tr:last-child>th,
table>tbody>tr:last-child>td,
.table-striped>tbody>tr:last-child>td {
  border-bottom: none;
}

table>tbody>tr:hover>th,
.table-striped>tbody>tr:hover>th,
table>tbody>tr:hover>td,
.table-striped>tbody>tr:hover>td {
  background-color: var(--dark-gray);
  box-shadow: none;
}
.table-responsive table tbody{
    font-weight:bold;
}

#content-wrapper table a.controls svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  vertical-align: baseline;
}

#content-wrapper table a.controls:hover svg,
#content-wrapper table a.controls:active svg,
#content-wrapper table a.controls:focus svg {
  fill: var(--font);
}

#content-wrapper table a.controls:hover,
#content-wrapper table a.controls:active,
#content-wrapper table a.controls:focus {
  border: none;
}



/* FORMS */
form label {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--form-label);
}

.custom-select div {
  position: relative;
}

.custom-select div:after {
  content: '';
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 0.25rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-top: 0.25rem solid var(--dark-gray);
  right: 24px;
  top: 50%;
  margin-top: -2px;
}

.custom-select select {
  position: relative;
  z-index: 1;
}

.btn {
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.375rem 1.5rem;
}

.btn-primary {
  background: var(--main);
  color: var(--white);
  border-color: var(--main);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}


/* COMPANY LOGO */
.company-logo {
  width: 100%;
  height: 80px;
  background-image: var(--logo);
  background-size: auto 100%;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  margin-top:0.8rem;
}

.company-logo.landspace {
  background-image: var(--logo-landscape);
}

@media (min-width: 992px) {
  .company-logo {
    background-position: right center;
  }

}

/* MENU */
.nav-link,
.trans-active {
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.toggle-menu .icon {
  width: 33px;
  height: 24px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.toggle-menu .icon span {
  width: 33px;
  height: 4px;
  border-radius: 4px;
  display: block;
  margin: 0;
  background: var(--font);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  position: absolute;
  top: 50%;
  margin-top: -2px;
}

.toggle-menu .icon span:first-child {
  top: 0;
  margin: 0;
}

.toggle-menu .icon span:last-child {
  top: auto;
  bottom: 0;
  margin: 0;
}

.toggle-menu.active .icon span {
  opacity: 0;
}

.toggle-menu.active .icon span:first-child {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
  opacity: 1;
}

.toggle-menu.active .icon span:last-child {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
  opacity: 1;
}

.toggle-menu.active span {}

.main-bg {
  background: var(--main);
}

.main-bg-hover:hover {
  background: var(--accent);
}

.main-font {
  color: var(--font);
}

.main-font-hover:hover {
  color: var(--accent);
}

.main-fill-hover:hover {
  fill: var(--accent);
}

.white-fill svg {
  fill: var(--white);
}


.nav-pills .nav-link.active.white-fill-hover svg,
.white-fill-hover:hover svg {
  fill: var(--accent);
}

.white-font a,
.white-font {
  color: var(--white);
}

.nav-pills .nav-link.active.white-font-hover,
.white-font a:hover,
.white-font-hover:hover {
  color: var(--accent);
}



/* HEADER */
#header-wrapper {
  background: var(--white);
  padding: 10px 0;
}

#header-wrapper .logo-holder {
  margin-bottom: 20px;
}

#header-wrapper .logo-holder img {
  max-width: 210px;
  max-height: 60px;
  margin: 0 auto;
  display: block;
}

#header-wrapper .site-controls {
  background: var(--main);
  padding: 15px;
  border-radius: 4px;
}

#header-wrapper .site-controls a {
  display: inline-block;
  vertical-align: middle;
}


#header-wrapper .toggle-menu strong {
  color: var(--white);
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}

#header-wrapper .toggle-menu .icon span {
  background: var(--white);
}

#header-wrapper .toggle-menu:hover strong {
  color: var(--accent);
}

#header-wrapper .toggle-menu:hover .icon span {
  background: var(--accent);
}

#header-wrapper .toggle-quick svg {
  fill: var(--white);
  width: 38px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
}

#header-wrapper .toggle-quick strong {
  color: var(--white);
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}

#header-wrapper .toggle-quick:hover svg,
#header-wrapper .toggle-quick:hover strong {
  color: var(--accent);
  fill: var(--accent);
}

@media (min-width: 992px) {
  #header-wrapper {
    padding: 25px 15px 0 15px;
  }

  #header-wrapper .logo-holder {
    margin-bottom: 0;
  }

  #header-wrapper .logo-holder img {
    display: inline-block;
  }

  #header-wrapper .toggle-menu .icon span {
    background: var(--font);
  }

  #header-wrapper .toggle-menu strong {
    color: var(--font);
  }
}


/* QUICK LINKS FOUND AT THE HEADER */
#quick-links {
  padding-top: 15px;
  display: none;
}

#quick-links a {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--font);
  padding: 10px;
  border-radius: 0;
  font-size: 14px;
  background: var(--gray);
  text-align: left;
  border-bottom: 1px solid var(--form-label);
  position: relative;

}

#quick-links a .ctrl {
  position: absolute;
  right: 0;
  padding: 10px;
  top: 0;
  cursor: pointer;
}

#quick-links a svg {
  fill: var(--white);
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}

#quick-links a:hover svg {
  fill: var(--accent);
}

#quick-links .nav-item.open svg {
  transform: rotate(0deg);
}

#quick-links .nav-item:last-child a {
  border: none;
}

#quick-links a.active:hover,
#quick-links a:hover {
  color: var(--accent);
}

#quick-links a.active {
  background: var(--main);
  color: var(--white);
}

#quick-links .sub-nav {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 0;
  display: none;
}

#quick-links .sub-nav h5 {
  font-size: 12px;
  margin: 0;
}

#quick-links .sub-nav ul {
  padding: 0;
  margin-bottom: 15px;
  list-style-type: none;
}

#quick-links .sub-nav a {
  font-size: 12px;
  padding: 0;
  font-weight: 300;
  border: none;
  background: transparent;
}



@media (min-width: 992px) {
  #quick-links {
    display: block !important;

  }

  #quick-links a {
    font-weight: 300;
    padding: 0;
    padding: 0 0 10px 0;
    position: relative;
    background: transparent;
    text-align: center;
    border: none;
  }

  #quick-links a .ctrl {
    display: none;
  }

  #quick-links a:active,
  #quick-links a:focus,
  #quick-links a.active {
    border-radius: 0;
    background: transparent;
    color: var(--font);

  }

  #quick-links a.active:hover,
  #quick-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  #quick-links .nav-item>a:active:after,
  #quick-links .nav-item>a:focus:after,
  #quick-links .nav-item>a.active:after {
    content: '';
    height: 1px;
    width: 100%;
    left: 0;
    right: 0;
    background: var(--font);
    display: block;

  }

  #quick-links .nav-item {
    margin-left: 15px;
  }

  #quick-links .nav-item:hover>.sub-nav {
    display: block !important;
  }

  #quick-links .sub-nav {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 100;
    display: block;
    left: 100px;
    background: var(--gray);
    text-align: left;
    padding-bottom: 15px;

    display: none !important;
  }

  #quick-links .sub-nav-wrapper {
    max-width: 80rem;
    margin: 0 auto;
    padding: 30px 30px 0;

  }

  #quick-links .sub-nav h5 {
    font-size: 12px;
    margin: 0;
  }

  #quick-links .sub-nav ul {
    padding: 0;
    margin-bottom: 30px;
    list-style-type: none;
  }

  #quick-links .sub-nav a {
    font-size: 14px;
  }


  body.menu-open #quick-links .sub-nav {
    left: 300px;
  }

  #quick-links .sub-nav h5 {
    font-size: 14px;
    margin: 0;
  }

  #quick-links .sub-nav ul {
    padding: 0;
    margin-bottom: 30px;
    list-style-type: none;
  }

  #quick-links .sub-nav a {
    font-size: 14px;
  }

}

@media (min-width: 1200px) {
  #quick-links .nav-item {
    margin-left: 30px;
  }

}


/* SIDE MENU */
#sidebar-wrapper {
  padding: 35px 25px;
  position: fixed;
  top: 0;
  left: -320px;
  bottom: 0;
  width: 300px;
  overflow-y: auto;
  z-index: 100;
}

#sidebar-wrapper .toggle-menu {
  position: absolute;
  right: 15px;
  top: 15px;
}

#sidebar-wrapper .toggle-menu .icon span {
  background: var(--white);
}

#sidebar-wrapper.active {
  left: 0;
}

#sidebar-wrapper .nav-item {
  margin-bottom: 25px;
}

#sidebar-wrapper .nav-item:last-child {
  margin-bottom: 0;
}

#sidebar-wrapper a {
  text-transform: uppercase;
  white-space: nowrap;
}

#sidebar-wrapper .nav-item>a {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  margin-bottom: 5px;
  white-space: nowrap;
}

#sidebar-wrapper .nav-item>a svg {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-block;
  vertical-align: middle;
}

#sidebar-wrapper .nav-item>a>.title {
  margin-left: 15px;
  display: inline-block;
  vertical-align: middle;
}

#sidebar-wrapper .nav-sub-menu {
  padding-left: 25px;
  margin-left: 25px;
  border-left: 1px solid var(--white);
}

#sidebar-wrapper .nav-item:last-child .nav-sub-menu {
  margin-bottom: 0;
}

#sidebar-wrapper .nav-sub-menu a {
  line-height: 1;
  display: block;
  font-size: 12px;
}

#sidebar-wrapper .nav-sub-menu a:active,
#sidebar-wrapper .nav-sub-menu a:focus,
#sidebar-wrapper .nav-sub-menu a.active {
  color: var(--accent);
}

#sidebar-wrapper .nav-sub-menu li {
  margin-bottom: 10px;
}

#sidebar-wrapper .nav-sub-menu li:last-child {
  margin-bottom: 0;
}

#sidebar-wrapper .user-holder {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--white);
}


#sidebar-wrapper .account strong {
  margin-left: 15px;
}

#sidebar-wrapper .account .text {
  display: inline-block;
  vertical-align: middle;
}

#sidebar-wrapper .account svg {
  fill: var(--white);
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-block;
  vertical-align: middle;
}

#sidebar-wrapper .account:active svg,
#sidebar-wrapper .account:focus svg,
#sidebar-wrapper .account:hover svg {
  fill: var(--accent);
}

#sidebar-wrapper .ctrls {
  white-space: nowrap;
}

#sidebar-wrapper .ctrls a {
  font-size: 10px;
  line-height: 1em;
}


#sidebar-wrapper .ctrls a+a {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--white);
}

@media (min-width: 992px) {
  #sidebar-wrapper {
    padding: 65px 10px 35px;
    width: 100px;
    overflow-x: hidden;
    left: 0;
  }


  #sidebar-wrapper .nav-item .title,
  #sidebar-wrapper .nav-sub-menu,
  #sidebar-wrapper .account .text,
  #sidebar-wrapper .ctrls {
    width: 0;
    height: 0;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    opacity: 0;
  }

  #sidebar-wrapper .user-holder {
    text-align: center;
  }

  #sidebar-wrapper .account svg {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  #sidebar-wrapper .toggle-menu {
    right: 0;
    display: block;
    width: 33px;
    left: 0;
    margin: 0 auto;

  }

  #sidebar-wrapper .nav-item>a {
    text-align: center;
    transition: none;
  }

  #sidebar-wrapper .nav-item>a>.title {
    margin-left: 0;
  }

  #sidebar-wrapper.active {
    width: 300px;
    padding: 45px 25px 35px;
  }

  #sidebar-wrapper.active .user-holder {
    text-align: left;
  }

  #sidebar-wrapper.active .account svg {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  #sidebar-wrapper.active .toggle-menu {
    right: 15px;
    left: auto;
  }

  #sidebar-wrapper.active .nav-item>a {
    text-align: left;
  }

  #sidebar-wrapper.active .nav-item>a>.title {
    margin-left: 15px;
  }

  #sidebar-wrapper.active .nav-item .title,
  #sidebar-wrapper.active .nav-sub-menu,
  #sidebar-wrapper.active .account .text,
  #sidebar-wrapper.active .ctrls {
    width: auto;
    height: auto;
    opacity: 1;
  }

}




/* CONTENT AREA */
#content-wrapper {
  padding: 30px 0;
}

#content-wrapper a {
  color: var(--accent);
}

#content-wrapper a:active,
#content-wrapper a:focus,
#content-wrapper a:hover {
  border-bottom: 1px solid var(--accent);
}

@media (min-width: 992px) {
  #content-wrapper {
    padding: 40px 15px;
  }
}


/* SHORT LINK - USED IN THE CONTENT AREA */
#short-links .navbar-brand {
  font-size: 1rem;
}

#short-links .navbar-toggler {
  color: var(--font);
  padding: 0;
  border: none;
  box-shadow: none;
}

#short-links .navbar-nav {
  padding: 0;
}

#short-links .navbar-nav .nav-link {
  text-transform: uppercase;
  color: var(--font);
  font-size: 0.75rem;
}

#short-links .navbar-nav .nav-link:active,
#short-links .navbar-nav .nav-link:focus,
#short-links .navbar-nav .nav-link:hover,
#short-links .navbar-nav .nav-link.active {
  color: var(--accent);
  border-bottom: none;
  transition: none;
}

#short-links .navbar-nav .nav-link.disabled {
  color: var(--dark-gray);
}

@media (min-width: 992px) {

  #short-links .navbar-nav .nav-link,
  #short-links .navbar-brand {
    font-size: 0.875rem;
  }
}

#content-wrapper .pagination a {
  color: var(--font);
  text-decoration: none;
  border: none;
  outline: none;
}

#content-wrapper .pagination a:active,
#content-wrapper .pagination a:focus,
#content-wrapper .pagination a:hover {
  text-decoration: none;
  border: none;
  outline: none;
}



/* LOGIN PAGE */
#login-page {
  padding: 0;
  display: table;
  width: 100%;
}

#login-page .company-logo {
  margin: 0 auto;
  display: block;
  width: 100%;
  background-position: center;
}

#login-page .login-icon {
  max-width: 170px;
  height: auto;
  fill: var(--font);
}

#login-page .forgot {
  color: var(--font);
  font-size: 0.8em;
}

#login-page .forgot:focus,
#login-page .forgot:active,
#login-page .forgot:hover,
#content-wrapper #login-page a:focus,
#content-wrapper #login-page a:active,
#content-wrapper #login-page a:hover {
  color: var(--accent);
}

#login-page .page-title {
  font-size: 1.4em;
}

#login-page .content-wrapper {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

#login-page .content-wrapper .container-fluid {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

#login-page .form-remember {
  margin: 0;
}

@media (min-width: 768px) {
  #login-page .company-logo {
    max-width: none;
  }

  #login-page .content-wrapper .container-fluid {
    max-width: 960px;
  }

  #login-page .content-wrapper .right {
    border-left: 1px solid var(--dark-gray);
  }
}

.field-validation-error {
    color: red;
}

.input-validation-error {
    border: 2px solid red;
}
table.responsive tbody tr td {
    font-weight:bold;
}
