body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #0a0909; }

a {
  color: #ed1c24; }

a:hover, a:active, a:focus {
  color: #970c11;
  text-decoration: none; }

.highlight {
  color: #ed1c24 !important; }

/*
.equal {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
*/
.equal > div[class*='col-'] {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 0 0 auto; }

.equal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex: 0 0 auto; }

.clickable {
  cursor: pointer; }

/** DROPDOWN **/
.dropdown-menu {
  opacity: 0;
  pointer-events: none;
  display: block;
  -moz-transform: -10px;
  -o-transform: -10px;
  -webkit-transform: -10px;
  transform: -10px;
  -moz-transition: opacity 150ms ease-out, transform 150ms ease-out, visibility 0ms linear 150ms;
  -o-transition: opacity 150ms ease-out, transform 150ms ease-out, visibility 0ms linear 150ms;
  -webkit-transition: opacity 150ms ease-out, transform 150ms ease-out, visibility 0ms linear 150ms;
  transition: opacity 150ms ease-out, transform 150ms ease-out, visibility 0ms linear 150ms;
  border-radius: 3px;
  border: none;
  border-top-left-radius: 0;
  padding-bottom: 0; }

.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  -moz-transition: opacity 200ms ease-out;
  -o-transition: opacity 200ms ease-out;
  -webkit-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out; }

.icon {
  -moz-transition: transform 0.1s ease-in-out;
  -o-transition: transform 0.1s ease-in-out;
  -webkit-transition: transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out; }

.open .icon {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.dropdown-menu a {
  font-size: 14px; }

.navbar-nav .dropdown-menu > li > a, .subnav .dropdown-menu > li > a, .nav-account .dropdown-menu > li > a {
  display: block;
  padding: 10px 20px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 14px;
  color: #3a3a3a; }

.navbar-nav .dropdown-menu a:last-child, .subnav .dropdown-menu a:last-child, .nav-account .dropdown-menu a:last-child {
  border-bottom: 0; }

.subnav .dropdown-menu > li > a {
  border-bottom: none; }

.dropdown-menu a:hover {
  text-decoration: none;
  background: #f1f1f1; }

.btn-group .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0; }

.dropdown-menu.dropdown-primary {
  background-color: #ed1c24; }

.dropdown-menu.dropdown-primary > li > a {
  color: #fff; }

.dropdown-menu.dropdown-primary > li > a:focus, .dropdown-menu.dropdown-primary > li > a:hover {
  background: #970c11;
  color: #fff; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: none;
  box-shadow: none; }

@media (max-width: 767px) {
  .dropdown-menu {
    -moz-transform: none;
    -o-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none; }
  .open .dropdown-menu {
    -moz-transform: none;
    -o-transform: none;
    -webkit-transform: none;
    transform: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none; }
  #navbar.collapse {
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  .slide-in, .slide-out {
    height: 100% !important;
    overflow-y: auto;
    display: block; }
  .slide-in {
    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards; }
  .slide-out {
    animation: slide-out 0.2s forwards;
    -webkit-animation: slide-out 0.2s forwards; } }

@keyframes slide-in {
  100% {
    transform: translateX(0%); } }

@-webkit-keyframes slide-in {
  100% {
    -webkit-transform: translateX(0%); } }

@keyframes slide-out {
  0% {
    transform: translateX(0%); }
  100% {
    transform: translateX(-120%); } }

@-webkit-keyframes slide-out {
  0% {
    -webkit-transform: translateX(0%); }
  100% {
    -webkit-transform: translateX(-120%); } }

/** BUTTONS **/
.btn {
  border-radius: 3px; }

.btn:hover {
  -webkit-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.btn-primary {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24; }

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24; }

.btn-primary:hover {
  color: #fff;
  background-color: #970c11;
  border-color: #970c11; }

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24; }

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24; }

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none; }

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4; }

.btn-primary .badge {
  color: #337ab7;
  background-color: #ed1c24; }

.btn-outline {
  background-color: #fff;
  border-color: #ed1c24;
  color: #ed1c24; }

.btn-outline:hover {
  border-color: #970c11;
  color: #970c11; }

.btn i {
  margin-left: 5px; }

.btn-radio-group .btn-radio {
  margin-right: 5px; }

.btn.btn-radio {
  background-color: #fff;
  border-color: #c8c8c8;
  color: #c8c8c8;
  outline: none; }
  .btn.btn-radio:hover {
    color: #333;
    border-color: #333; }
  .btn.btn-radio:active {
    outline: none; }
  .btn.btn-radio.checked {
    background-color: #ffeaea;
    border-color: #ed1c24;
    color: #ed1c24; }
  .btn.btn-radio.checked:hover {
    background-color: #ffeaea;
    border-color: #ed1c24;
    color: #ed1c24; }

.btn-radio-group {
  position: relatlive; }
  .btn-radio-group ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
  .btn-radio-group ul li {
    display: inline-block;
    background-color: #fff;
    color: #c8c8c8;
    position: relative; }
  .btn-radio-group label, .btn-radio-group input {
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .btn-radio-group input[type="radio"], .btn-radio-group input[type="checkbox"] {
    opacity: 0.011;
    z-index: 100;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer; }
  .btn-radio-group input[type="radio"]:checked + label, .btn-radio-group input[type="checkbox"]:checked + label {
    background-color: #ffeaea;
    border-color: #ed1c24;
    color: #ed1c24; }
  .btn-radio-group ul li label {
    padding: 6px 12px;
    border: 1px solid #c8c8c8;
    border-radius: 3px;
    cursor: pointer;
    z-index: 90;
    font-size: 14px;
    line-height: 1.42857143;
    font-weight: normal; }

/** FORMS **/
.form-group .form-control {
  border-radius: 3px; }

label {
  margin-bottom: 0; }

.form-group .form-inline .form-control {
  width: 50%;
  margin-right: 8px;
  margin-bottom: 7px; }

.form-group {
  margin-bottom: 20px; }

.form-group-inner {
  margin-bottom: 10px; }

.checkbox {
  margin-top: 0; }

.form-info-icon {
  font-size: 16px;
  color: #818181; }

.form-group label {
  font-weight: 500; }
  .form-group label .form-info-icon {
    vertical-align: -2px;
    line-height: -16px;
    font-size: 14px;
    margin-left: 4px; }

.form-group-inner label {
  font-size: 12px; }

.form-section-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 15px; }

.form-section-title.first {
  margin-top: 0; }

.form-control:focus {
  border-color: #434549;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.3); }

.has-error .control-label {
  color: #ed1c24; }

.has-error .form-control, .has-error .form-control:focus {
  border: 2px solid #ed1c24; }

.error-msg {
  color: #ed1c24;
  font-weight: 500;
  display: inline-block; }

.has-error.form-error {
  display: inline-block; }

.form-error {
  background: #ed1c24;
  border: 1px solid #ed1c24;
  font-weight: 500;
  display: inline-block;
  padding: 2px 7px;
  font-size: 11px;
  margin-left: 10px;
  color: #ed1c24;
  border-radius: 2px;
  display: none;
  position: absolute;
  color: #fff; }

.form-inline .form-error {
  position: initial; }

.form-action {
  margin-top: 25px; }
  .form-action .btn {
    margin-right: 10px; }
  .form-action a {
    color: #636363; }

@media (max-width: 767px) {
  .form-group .form-inline .form-control {
    width: 100%;
    margin-right: 0px; } }

/** PANELS **/
.panel {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #e9e9e9;
  margin-bottom: 20px; }

.panel-body, .panel-heading {
  padding: 20px; }

.panel-row {
  border-bottom: 1px solid #e9e9e9; }

.panel .panel-row:last-child {
  border-bottom: 0; }

.panel-fullheight {
  height: 100%; }

/*
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)  {
    .panel-fullheight {
        min-height: 100%;
        max-height: 100%;
    }
}
*/
/** TABLES **/
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  border-top: none;
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 8px; }

.table-row-click tr {
  cursor: pointer; }

.table-hover > tbody > tr:hover {
  background-color: #f9f9f9; }

.table-toolbar {
  border-bottom: 1px solid #e6e6e6;
  padding: 0 20px 20px 20px;
  margin-left: -20px;
  margin-right: -20px; }
  .table-toolbar div {
    display: table;
    width: 100%; }
    .table-toolbar div .table-toolbar-count {
      display: table-cell;
      width: 50%; }
    .table-toolbar div .table-toolbar-search {
      display: table-cell;
      width: 30%; }

@media (max-width: 767px) {
  .table-toolbar div .table-toolbar-count {
    width: 40%; }
  .table-toolbar div .table-toolbar-search {
    width: 60%; }
  .table {
    border: 0; }
  .table thead {
    display: none; }
  .table tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #ddd; }
  .table td {
    display: block;
    text-align: right;
    font-size: 13px;
    border-bottom: 1px dotted #ccc; }
  .table td:last-child {
    border-bottom: 0; }
  .table td:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold; } }

/** BADGES **/
.badge {
  font-size: 11px; }

.badge-primary {
  background-color: #ed1c24; }

/** TABS **/
.nav-tabs {
  background-color: #ececec;
  border-bottom: none; }

.tab-content {
  background-color: #fff;
  border: 1px solid #e9e9e9;
  border-top: 0;
  border-radius: 3px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding: 20px;
  margin-bottom: 20px; }

.nav .badge {
  margin-left: 5px; }

.nav.nav-tabs > li > a:hover {
  color: #000;
  border-color: #ececec; }

.nav-tabs > li > a {
  color: #0a0909;
  border-radius: 3px 3px 0 0;
  padding: 20px; }

.nav-tabs > li {
  margin-bottom: -2px;
  padding-bottom: 2px; }

@media (max-width: 767px) {
  .nav-tabs > li {
    float: none; }
  .nav-tabs > li > a {
    margin-right: 0; } }

/** PAGING **/
.pagination > li > a, .pagination > li > span {
  color: #0a0909; }

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background-color: #ed1c24;
  border-color: #ed1c24; }

.badge-circle {
  display: inline-block;
  min-width: 10px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
  font-size: 9px;
  padding: 3px 0;
  width: 16px;
  height: 16px;
  text-align: center; }

.badge-circle-primary {
  border: 1.5px solid #ed1c24;
  background: #fff;
  color: #ed1c24; }

@media (max-width: 768px) {
  .affix {
    position: relative; } }

/** GLOBAL **/
html {
  height: 100%;
  background: #f0f0f0; }

/** CONTENT **/
.box-login {
  position: fixed;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  max-width: 450px;
  width: 100%;
  border-radius: 3px;
  padding: 50px;
  -webkit-box-shadow: 0px 0px 18px -4px rgba(0, 0, 0, 0.56);
  box-shadow: 0px 0px 18px -4px rgba(0, 0, 0, 0.56); }

.logo {
  margin-bottom: 50px; }
  .logo img {
    width: 150px;
    margin: 0 auto;
    display: block; }

/** FORM **/
.frm-login .form-control:first-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.frm-login .form-control:last-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0; }

.frm-login .input-main-group {
  margin-bottom: 30px; }

.login-links {
  text-align: center;
  margin-top: 20px; }

.supplier-login {
  position: absolute;
  bottom: 20px;
  right: 20px; }

.supplier-login a {
  color: #999; }

.supplier-login a:hover {
  color: #0a0909; }
