@charset "UTF-8";
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e9ecef;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e9ecef;
}
.table tbody + tbody {
  border-top: 2px solid #e9ecef;
}
.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #e9ecef;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #e9ecef;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #dddfe2;
}

.table-hover .table-secondary:hover {
  background-color: #cfd2d6;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #cfd2d6;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm.table-bordered {
    border: 0;
  }
}
@media (max-width: 767px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md.table-bordered {
    border: 0;
  }
}
@media (max-width: 991px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg.table-bordered {
    border: 0;
  }
}
@media (max-width: 1199px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl.table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive.table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::placeholder {
  color: #868e96;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.col-form-legend {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  font-size: 1rem;
}

.form-control-plaintext {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

select.form-control-sm:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px);
}

.form-control-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control-lg:not([size]):not([multiple]) {
  height: calc(2.875rem + 2px);
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
}
.form-check.disabled .form-check-label {
  color: #868e96;
}

.form-check-label {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -1.25rem;
}

.form-check-inline {
  display: inline-block;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-label {
  vertical-align: middle;
}

.valid-feedback {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  width: 250px;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.8);
  border-radius: 0.2rem;
}

.was-validated .form-control:valid, .form-control.is-valid,
.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid + .form-check-label, .form-check-input.is-valid + .form-check-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-indicator, .custom-control-input.is-valid ~ .custom-control-indicator {
  background-color: rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid ~ .custom-control-description, .custom-control-input.is-valid ~ .custom-control-description {
  color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-control, .custom-file-input.is-valid ~ .custom-file-control {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid ~ .custom-file-control::before, .custom-file-input.is-valid ~ .custom-file-control::before {
  border-color: inherit;
}
.was-validated .custom-file-input:valid:focus, .custom-file-input.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  width: 250px;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: 0.2rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid,
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid + .form-check-label, .form-check-input.is-invalid + .form-check-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-indicator, .custom-control-input.is-invalid ~ .custom-control-indicator {
  background-color: rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid ~ .custom-control-description, .custom-control-input.is-invalid ~ .custom-control-description {
  color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-control, .custom-file-input.is-invalid ~ .custom-file-control {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .custom-file-control::before, .custom-file-input.is-invalid ~ .custom-file-control::before {
  border-color: inherit;
}
.was-validated .custom-file-input:invalid:focus, .custom-file-input.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .form-inline .form-check-label {
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
  }
  .form-inline .custom-control-indicator {
    position: static;
    display: inline-block;
    margin-right: 0.25rem;
    vertical-align: text-bottom;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:focus, .btn:hover {
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not([disabled]):not(.disabled):active, .btn:not([disabled]):not(.disabled).active {
  background-image: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not([disabled]):not(.disabled):active, .btn-primary:not([disabled]):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #727b84;
  border-color: #6c757d;
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  background-color: #868e96;
  border-color: #868e96;
}
.btn-secondary:not([disabled]):not(.disabled):active, .btn-secondary:not([disabled]):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #666e76;
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not([disabled]):not(.disabled):active, .btn-success:not([disabled]):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not([disabled]):not(.disabled):active, .btn-info:not([disabled]):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
  color: #111;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #111;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not([disabled]):not(.disabled):active, .btn-warning:not([disabled]):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #111;
  background-color: #d39e00;
  border-color: #c69500;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not([disabled]):not(.disabled):active, .btn-danger:not([disabled]):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
  color: #111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #111;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not([disabled]):not(.disabled):active, .btn-light:not([disabled]):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #111;
  background-color: #dae0e5;
  border-color: #d3d9df;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not([disabled]):not(.disabled):active, .btn-dark:not([disabled]):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not([disabled]):not(.disabled):active, .btn-outline-primary:not([disabled]):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #868e96;
  background-color: transparent;
  background-image: none;
  border-color: #868e96;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #868e96;
  background-color: transparent;
}
.btn-outline-secondary:not([disabled]):not(.disabled):active, .btn-outline-secondary:not([disabled]):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not([disabled]):not(.disabled):active, .btn-outline-success:not([disabled]):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not([disabled]):not(.disabled):active, .btn-outline-info:not([disabled]):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not([disabled]):not(.disabled):active, .btn-outline-warning:not([disabled]):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not([disabled]):not(.disabled):active, .btn-outline-danger:not([disabled]):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not([disabled]):not(.disabled):active, .btn-outline-light:not([disabled]):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not([disabled]):not(.disabled):active, .btn-outline-dark:not([disabled]):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}
.btn-link:focus, .btn-link.focus {
  border-color: transparent;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #868e96;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

/*Add font ================================*/
/*End Add font ================================*/
.required_input:after {
  content: " (*)";
  color: red;
}

.ja_close .ficon-cancel {
  color: #ccc;
}

.js_none {
  display: none;
}

.js_none_op {
  opacity: 0;
}

* {
  line-height: 150%;
  box-sizing: border-box;
}

.none {
  display: none;
}

.error {
  color: #f00;
  font-style: italic;
  font-size: 12px;
}

.img_bo_t,
.img_bo_b {
  position: relative;
  height: 7px;
  margin: 0px 7px;
  background: url(../images/pic_bo_tb.gif) repeat-x top;
  z-index: 0;
}

.img_bo_b {
  background-position: bottom left;
}

.img_bo_t .img_bo_tl,
.img_bo_t .img_bo_tr,
.img_bo_b .img_bo_bl,
.img_bo_b .img_bo_br {
  position: absolute;
  width: 7px;
  height: 7px;
  background: url(../images/pic_bo.png) no-repeat 0px 0px;
  top: 0px;
}

.img_bo_t .img_bo_tl {
  left: -7px;
}

.img_bo_t .img_bo_tr {
  background-position: right top;
  right: -7px;
}

.img_bo_b .img_bo_bl {
  background-position: left bottom;
  left: -7px;
}

.img_bo_b .img_bo_br {
  background-position: right bottom;
  right: -7px;
}

.img_bo_m {
  position: relative;
  z-index: 1;
  padding: 0px 7px;
}

.img_bo_m .img_bo_l,
.img_bo_m .img_bo_r {
  position: absolute;
  width: 7px;
  height: 100%;
  background: url(../images/pic_bo_lr.gif) repeat-y left;
  top: 0px;
  z-index: 0;
}

.img_bo_m .img_bo_l {
  left: 0px;
}

.img_bo_m .img_bo_r {
  background-position: right top;
  right: 0px;
}

.limit {
  overflow: hidden;
}

img {
  margin: 0;
  padding: 0;
  border: none;
  max-width: 100%;
}

img.img_full_size {
  width: 100% !important;
  height: auto !important;
}

img.img_max_width {
  max-width: 100% !important;
  height: auto !important;
}

img.img_fleft {
  float: left;
}

img.img_fright {
  float: right;
}

.img > a {
  display: inline-block;
  overflow: hidden;
}

.product_item .img > a:first-child {
  padding-top: 125%;
  position: relative;
  overflow: hidden;
  height: 0px;
}

.product_item .img > a > img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease-out 0s;
}

.product_item .img:hover > a > img {
  transform: translate(-50%, -50%) scale(1.1);
}

.img > a > img {
  transform: scale(1);
  transition: all 500ms ease-out 0s;
  max-width: 100%;
}

.img > a:hover > img {
  transform: scale(1.1);
}

.justify {
  text-align: justify;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.nostart {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.clear {
  clear: both;
}

br.clear {
  clear: both;
  margin-top: -15px;
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

a {
  outline: none;
  text-decoration: none;
  color: #444444;
  transition: all 300ms ease-out 0s;
}

.alert {
  padding: 0.55rem 1.25rem;
}

a:hover {
  color: #ed3237;
  text-decoration: none;
}

.fl_left {
  float: left;
}

.fl_right {
  float: right;
}

.imgl, .imgr {
  border: 1px solid #C7C5C8;
  padding: 5px;
}

.imgl {
  float: left;
  margin: 0 8px 8px 0;
  clear: left;
}

.imgr {
  float: right;
  margin: 0 0 8px 8px;
  clear: right;
}

.input_hidden {
  height: 0px;
  border: none;
  font-size: 0px;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0px;
  margin: 0px;
}

p {
  margin: 0px 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  padding: 5px 0px;
}

ul.list_none {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.form-control {
  font-size: 13.4px;
  height: 33px;
}

.input_hidden {
  height: 0px !important;
  border: none !important;
  font-size: 0px !important;
  background: none !important;
  padding: 0px !important;
  margin: 0px !important;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
}

.table-responsive {
  width: 100%;
  overflow: auto;
}

table.tablescroll > tbody,
table.tablescroll > thead,
table.tablescroll > tfoot {
  display: block;
  width: 100%;
}

table.tablescroll > thead,
table.tablescroll > tfoot {
  /*    padding-right: 17px;*/
}

table.tablescroll > tbody {
  overflow-y: scroll;
  overflow-x: hidden;
}

table.tablescroll > tbody > tr,
table.tablescroll > thead > tr,
table.tablescroll > tfoot > tr {
  display: table;
  width: 100%;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row:after {
  content: "";
  display: block;
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  user-select: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
  color: #333333;
  text-decoration: none;
}

.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}

.btn-default:focus,
.btn-default.focus {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

.btn-default:hover {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

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

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #ffffff;
  border-color: #cccccc;
}

.btn-default .badge {
  color: #ffffff;
  background-color: #333333;
}

.btn-primary {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: #286090;
  border-color: #122b40;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}

.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: #ffffff;
  background-color: #204d74;
  border-color: #122b40;
}

.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: #ffffff;
}

.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:focus,
.btn-success.focus {
  color: #ffffff;
  background-color: #449d44;
  border-color: #255625;
}

.btn-success:hover {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #ffffff;
  background-color: #398439;
  border-color: #255625;
}

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

.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success .badge {
  color: #5cb85c;
  background-color: #ffffff;
}

.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

.btn-info:hover {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #ffffff;
  background-color: #269abc;
  border-color: #1b6d85;
}

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

.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info .badge {
  color: #5bc0de;
  background-color: #ffffff;
}

.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #985f0d;
}

.btn-warning:hover {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #ffffff;
  background-color: #d58512;
  border-color: #985f0d;
}

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

.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #ffffff;
}

.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #761c19;
}

.btn-danger:hover {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #ac2925;
  border-color: #761c19;
}

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

.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger .badge {
  color: #d9534f;
  background-color: #ffffff;
}

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

/*--------------box-------------*/
.box {
  margin-bottom: 22px;
  background: #fff;
  padding: 15px 30px;
  padding-right: 20px;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.box .box-title {
  position: relative;
  text-align: left;
}
.box .box-title:after {
  content: "";
  width: 60px;
  height: 2px;
  background: #ff9300;
  display: inline-block;
}
.box .box-title span {
  font-weight: bold;
  color: #002060;
  font-size: 15px;
  text-transform: uppercase;
  font-family: Muli;
  display: inline-block;
  padding-bottom: 10px;
  display: block;
}

.box .box-content {
  position: relative;
  margin-top: 15px;
}

.box_filter_rate li {
  margin-bottom: 11px;
}
.box_filter_rate li i:before {
  margin-left: -4px;
  color: #F17A0D;
}
.box_filter_rate li span {
  padding-left: 4px;
}

.box_filter_price .custom-control {
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
}
.box_filter_price .custom-control .custom-control-label::before {
  left: -30px;
  cursor: pointer;
}
.box_filter_price .custom-control .custom-control-label::after {
  left: -30px;
  cursor: pointer;
}

.box_video .item_first .img {
  position: relative;
}
.box_video .item_first .img:before {
  content: url("../images/icon_play_video.png");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 22;
}
.box_video .item_first .img a {
  display: block;
}
.box_video .item_first .img a:before {
  background: #000;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: block;
}

.news_view_desc {
  padding: 15px 18px;
}
.news_view_desc .list_item_news .row_item {
  margin-right: 0px;
}
.news_view_desc .list_item_news .row_item .item {
  width: 100%;
  padding-right: 0px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f6f6f6;
}
.news_view_desc .list_item_news .row_item .item .img {
  width: 32%;
  float: left;
  margin-bottom: 0;
}
.news_view_desc .list_item_news .row_item .item .img a {
  display: block;
}
.news_view_desc .list_item_news .row_item .item .img img {
  max-width: 100%;
  width: 100%;
}
.news_view_desc .list_item_news .row_item .item .info {
  width: 68%;
  float: left;
  padding-left: 16px;
}
.news_view_desc .list_item_news .row_item .item .info h3 a {
  font-weight: 500;
  font-family: Muli;
  color: #000000;
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}
.news_view_desc .list_item_news .row_item .item .info h3 a:hover {
  color: #FF9603;
}
.news_view_desc .list_item_news .row_item .item .info .date {
  font-size: 13px;
}
.news_view_desc .list_item_news .row_item .item .info .short {
  display: none;
}

/*-------------box_mid-------------*/
.box_mid {
  padding: 0px 17px;
  margin-bottom: 28px;
}
.box_mid .box_mid-title {
  position: relative;
  text-align: left;
  font-weight: normal;
  background: #fff;
  padding-left: 19px;
  padding-top: 15px;
}
.box_mid .box_mid-title .mid_title_l {
  font-size: 18px;
  font-weight: bold;
  color: #002060;
  line-height: normal;
  display: block;
  font-family: "Muli";
  text-transform: uppercase;
}
.box_mid .box_mid-title .mid_title_l a {
  color: #08651e;
}
.box_mid .box_mid-title .mid_title_r {
  float: right;
}
.box_mid .box_mid-title > p {
  text-align: center;
}
.box_mid .box_mid-content {
  padding-top: 0px;
}

.box_menu_profile {
  background: #fff;
  padding: 14px;
}
.box_menu_profile ul > li {
  margin-bottom: 0px;
}
.box_menu_profile ul > li a {
  background: none;
  color: #333333;
  padding-left: 0px;
  display: block;
  padding: 5px 0px;
}
.box_menu_profile ul > li a:before {
  content: "";
  font-family: "ficon";
  color: #000;
  padding-right: 5px;
}
.box_menu_profile ul > li ul {
  display: block;
  padding-left: 16px;
  margin-top: 0px;
}
.box_menu_profile ul > li ul li a {
  background: none;
  font-size: 13px;
  color: #333333;
  padding-left: 0px;
}
.box_menu_profile ul > li ul li a:before {
  content: "";
  font-family: "ficon";
  color: #000;
  padding-right: 5px;
}
.box_menu_profile ul > li ul li input {
  display: none;
}
.box_menu_profile ul .ficon-angle-down {
  display: none;
}

.box_user_controler {
  background: #fff;
  border: 1px solid #fff;
  margin-bottom: 30px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding-top: 27px;
}
.box_user_controler .col-left {
  width: 90px;
  float: left;
  text-align: center;
}
.box_user_controler .col-left img {
  border: 1px solid #e2d8c7;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.box_user_controler .col-right {
  margin: 9px 0px 5px 105px;
  overflow: hidden;
}
.box_user_controler .col-right .col-title {
  font-size: 14px;
  text-transform: uppercase;
}
.box_user_controler .col-right .user_level {
  font-size: 13px;
  font-weight: 300;
  font-family: Muli;
}
.box_user_controler .col-right .col-money {
  background: #f0ecdd;
  padding: 6px 10px;
  line-height: 22px;
}
.box_user_controler .col-right .col-money strong {
  font-family: "Arial-Bold";
}
.box_user_controler .col-link {
  line-height: 22px;
  padding: 0px 15px;
  clear: both;
}
.box_user_controler .col-link a {
  white-space: nowrap;
  line-height: 14px;
  font-size: 13px;
}
.box_user_controler .col-link.col-link-first {
  margin-top: 20px;
  padding-bottom: 4px;
}
.box_user_controler ul {
  background: #fff;
  margin-top: 10px;
}
.box_user_controler ul li a {
  font-weight: 300;
  font-family: Muli;
  display: block;
  color: #545454;
  padding: 8px 20px;
  border-top: 1px solid #ececec;
}
.box_user_controler ul li a.current {
  border-left: 4px solid #016db6;
}
.box_product_group .box-content ul li a {
  display: block;
  padding: 10px 0px;
  color: #7b7b7b;
  font-family: Muli;
}

/*-------------box_menu-------------*/
.box_menu .box-content {
  padding: 0px;
  margin: 0px;
  position: relative;
  background: #fff;
}

.box_menu .box-content > * {
  position: relative;
}

.box_menu li {
  display: block;
  width: 100%;
}

.box_menu .box-content > ul > li {
  padding-right: 0px;
}

.box_menu li a {
  display: block;
  position: relative;
  padding: 10px 10px 10px 15px;
  color: #444444;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px dashed #eaeaea;
}

.box_menu li a > div {
  position: relative;
  display: block;
  padding-left: 25px;
}

.box_menu li a > div:before {
  font-family: "ficon";
  content: "";
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
  color: #f7941e;
}

.box_menu li a:before {
  content: "";
  display: block;
  position: absolute;
  background: #484848;
  top: 0px;
  left: -100%;
  bottom: 0px;
  width: 100%;
  transition: all 300ms ease-out 0s;
}

.box_menu li:first-child a {
  border-top: none;
}

.box_menu li:last-child a {
  border-bottom: none;
}

.box_menu li a:hover,
.box_menu li a.current {
  color: #fff;
}

.box_menu li a:hover:before,
.box_menu li a.current:before {
  left: 0px;
}

.box_menu li a:hover:after,
.box_menu li a.current:after {
  display: none;
}

.box_menu li a:hover > div:before,
.box_menu li a.current > div:before {
  color: #fff;
}

.box_menu li ul {
  display: none;
  background: #fff;
  width: 12em;
}

.box_menu .sm-simple.sm-vertical a span.sub-arrow {
  right: 10px;
  margin-left: 0px;
}

/*product_focus============================================================ */
.box_product_focus .product_focus .product_focus-row .img {
  width: 30%;
  float: left;
}
.box_product_focus .product_focus .product_focus-row .img a {
  display: block;
}
.box_product_focus .product_focus .product_focus-row .img img {
  max-width: 100%;
  width: 100%;
}
.box_product_focus .product_focus .product_focus-row .info {
  width: 70%;
  float: left;
  padding-left: 10px;
}
.box_product_focus .product_focus .product_focus-row .info h3 a {
  font-weight: bold;
  color: #000;
  font-size: 13px;
}

#tth-column_left .banner_item {
  margin-bottom: 1px;
}
#tth-column_left .banner_item img {
  width: 100%;
}

.box_service .box-content {
  margin-top: 0px;
  padding: 0px;
}
.box_service .box-content ul li {
  color: #00AAE8;
}
.box_service .box-content ul li a {
  color: #00AAE8;
  display: block;
  margin-bottom: 0px;
  border-bottom: solid 1px #fff;
  padding: 4px 20px;
  font-size: 15px;
  position: relative;
}
.box_service .box-content ul li a:before {
  content: "";
  width: 4px;
  height: 4px;
  background: #00AAE8;
  position: absolute;
  left: 10px;
  top: 12px;
}
.box_service .box-content ul li a:hover {
  background: #FF0202;
  color: #fff;
}
.box_service .box-content ul li a:hover:before {
  background: #fff;
}

.box_about {
  margin-bottom: 25px;
}

.box_about ul li {
  font-size: 14px;
  padding: 5px 0px;
  position: relative;
  padding-left: 20px;
}

.box_about ul li a:before {
  content: "";
  background: #4c4c4c;
  width: 6px;
  height: 6px;
  top: 11px;
  left: 3px;
  position: absolute;
  display: inline-block;
  border-radius: 50%;
}

.box_about ul li a.current {
  font-weight: bold;
}

.box_about .title span {
  background: #ed3338;
  display: inline-block;
  padding: 7px 10px 6px;
}

.box_about .title {
  margin-top: 0;
  border-bottom: 1px solid #ed3338;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
  background: #fff;
  padding: 0px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.row_item_first {
  position: relative;
}

.row_item_first .image {
  text-align: center;
}

.row_item_first .group_info {
  position: relative;
  bottom: 0;
  background: white;
  padding: 20px 0px;
  border-bottom: 1px #d4d4d4 solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.row_item_first .group_info .image img {
  max-width: 100%;
}

.row_item_first .group_info .title {
  color: #464646;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  max-height: 48px;
  overflow: hidden;
}

.row_item_first .group_info .title:hover {
  color: #ed3237;
}

.row_item_first .group_info .short {
  color: #2b2b2b;
}

.box_news_focus .news_focus-row:after {
  content: "";
  display: block;
  clear: both;
}

.box_news_focus .news_focus-row .img,
.box_news_focus .news_focus-row .info {
  float: left;
  width: 50%;
  padding-left: 7px;
  padding-right: 7px;
  margin: 10px 0px;
}

.box_news_focus .news_focus-row .img a,
.box_news_focus .news_focus-row .img img {
  display: block;
  width: 100%;
}

.box_news_focus .news_focus-row .info > h3 {
  font-weight: lighter;
}

/*product_scroll =============================================================*/
.product_scroll {
  /*background: #ebebeb;*/
  padding: 18px;
}

.product_scroll .product_item {
  margin-bottom: 2px;
}

.product_scroll.has_price .product_item .info-price {
  height: 40px;
  margin-top: 5px;
}

.product_scroll .owl-nav .owl-next i.angle-right {
  right: 0px;
  position: absolute;
  top: 40%;
  width: 30px;
  height: 58px;
  background: url("../../images/right.png");
}

.product_scroll .owl-nav .owl-prev {
  left: 0px;
  position: absolute;
  top: 40%;
  width: 30px;
  height: 58px;
  background: url("../../images/left.png");
}

/*-------------tth-statistic-------------*/
.tth-statistic > .srow:after {
  content: "";
  display: block;
  clear: both;
}

.tth-statistic > .srow > .rtitle,
.tth-statistic > .srow > .rcontent {
  float: left;
}

.tth-statistic > .srow > .rtitle {
  padding-right: 10px;
  font-weight: bold;
}

/*-------------tth_navigation-------------*/
/*-------------tth_navigation-------------*/
.nav {
  background: #eef1f2;
  padding: 15px 0px;
}
@media (max-width: 999px) {
  .nav {
    padding: 11px 0px;
  }
}
.nav .tth_navigation {
  background: none;
}
.nav .tth_navigation ul {
  float: left;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.nav .tth_navigation ul li {
  float: left;
  padding-left: 24px;
  position: relative;
}
.nav .tth_navigation ul li a {
  color: #424141;
}
.nav .tth_navigation ul li a:hover {
  color: #00325b;
}
.nav .tth_navigation ul li:first-child {
  padding-left: 0;
}
.nav .tth_navigation ul li:first-child:before {
  display: none;
}
.nav .tth_navigation ul li:first-child:before {
  content: "";
  color: #858585;
  padding-right: 5px;
  top: 1px;
  left: 0px;
}
.nav .tth_navigation ul li:before {
  display: block;
  content: "";
  font-family: "ficon";
  position: absolute;
  left: 9px;
  top: 1px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
}
@media (max-width: 678px) {
  .nav .tth_navigation ul li:nth-child(4) {
    display: none;
  }
  .nav .tth_navigation ul li:nth-child(5) {
    display: none;
  }
  .nav .tth_navigation ul li:nth-child(6) {
    display: none;
  }
}

/*upload-progress ------------------------------------------------------------*/
.fileupload .upload-progress {
  display: none;
  margin-bottom: 5px;
}

.fileupload .upload-progress.show {
  display: block;
}

.fileupload .upload-progress .progress-bar {
  background: #42b3e5;
  height: 4px;
}

.fileupload .list_uploaded {
  margin-left: -5px;
  margin-right: -5px;
}

.fileupload .list_uploaded:after {
  content: "";
  display: block;
  clear: both;
}

.fileupload .list_uploaded .pic-item {
  box-sizing: border-box;
  float: left;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  position: relative;
  max-width: 80px;
  width: 25%;
}

.fileupload .list_uploaded .pic-item img {
  width: 100%;
  border-radius: 3px;
  height: 45px;
}

.fileupload .list_uploaded .pic-item .btn-remove {
  color: #CE2C2C;
  display: inline-block;
  font-size: 19px;
  line-height: 22px;
  position: absolute;
  right: 0px;
  top: -5px;
  font-weight: normal;
  border: 1px solid #CE2C2C;
  width: 22px;
  height: 22px;
  text-align: center;
  border-radius: 11px;
  background-color: #fff;
}

.fileupload .btn-upload {
  background: #ffffff;
  border: 1px solid #42b3e5;
  color: #000;
  overflow: hidden;
  position: relative;
  padding: 3px 10px;
  display: inline-block;
}

.fileupload .btn-upload input[type=file] {
  cursor: pointer;
  font-size: 20px;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*----------------list_share----------------*/
.list_share {
  text-align: right;
}

.owl-product .info-price {
  display: block;
  margin-top: 5px;
}

.owl-product .info-price .price_buy span.number {
  font-size: 16px;
  font-weight: bold;
  color: #ed3237;
  margin-top: 5px;
}

.owl-product .info-price .price span.number {
  font-size: 16px;
  color: #777;
  font-weight: normal;
  text-decoration: line-through;
}

.owl-product .price_buy {
  display: inline-block;
  float: left;
}

.owl-product .price_buy.none {
  display: none;
}

.owl-product .price {
  float: left;
  margin-right: 10px;
}

/* ------****------Body------****------*/
body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #444444;
}

#tth-loading {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1500;
  background: #fff url(../images/loading.gif) no-repeat center center;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
  margin: 0px;
}

/* ------------------------------------*/
/* ------****------Wrapper------****------*/
#tth-wrapper {
  position: absolute;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}
@media (max-width: 999px) {
  #tth-wrapper.header_style1 {
    padding-top: 70px;
  }
}
@media (max-width: 599px) {
  #tth-wrapper.header_style1 {
    padding-top: 60px;
  }
}
@media (max-width: 999px) {
  #tth-wrapper.header_style2 {
    padding-top: 132px;
  }
}
@media (max-width: 750px) {
  #tth-wrapper.header_style2 {
    padding-top: 96px;
  }
}
@media (max-width: 999px) {
  #tth-wrapper.main_page {
    padding-top: 59px;
  }
}

div.wrapper {
  display: block;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 1230px) {
  div.wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* ---------------------------------------*/
/* ------****------Content------****------*/
#main_slide .owl-stage-outer {
  height: auto !important;
}

#container {
  padding: 0px 0px 20px;
  margin: 0px -15px;
  position: relative;
  min-height: 500px;
}
#container .box_mid {
  padding-right: 15px;
  padding-left: 15px;
}
.full {
  background: #eef1f2;
}
.full .box_mid .box_mid-content {
  background: #fff;
  min-height: 500px;
}
.full .wrapper.m .box_mid .box_mid-content {
  background: #fff;
  min-height: 500px;
  padding: 20px;
  padding-top: 10px;
}

.wrapper.c_m #tth-column_left {
  display: block;
  float: left;
  width: 22%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 21px;
}
.wrapper.c_m #tth-content {
  display: block;
  float: left;
  width: 78%;
  min-height: 1px;
}
.wrapper.c_m #tth-content .box_mid {
  padding-left: 0;
}
@media (max-width: 1230px) {
  .wrapper.c_m #tth-content .box_mid {
    padding-left: 10px !important;
    padding-right: 10px;
  }
}
@media (max-width: 999px) {
  .wrapper.c_m #tth-column_left {
    display: none;
  }
  .wrapper.c_m #tth-content {
    width: 100%;
  }
}

.wrapper.m_c #tth-content {
  display: block;
  float: left;
  width: 74.5%;
  min-height: 1px;
  padding-right: 0px;
}
.wrapper.m_c #tth-content .box_mid {
  padding-right: 0;
}
.wrapper.m_c #tth-content .box_mid .box_mid-content {
  background: #fff;
  padding: 25px;
}
.wrapper.m_c #tth-column {
  display: block;
  float: left;
  width: 25.5%;
  min-height: 1px;
  padding-left: 20px;
  padding-right: 0px;
  position: relative;
}
.wrapper.m_c #tth-column .banner_item {
  margin-bottom: 10px;
}
.wrapper.m_c #tth-column .banner_item img {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1230px) {
  .wrapper.m_c #tth-column {
    padding-right: 15px;
  }
}
@media (max-width: 999px) {
  .wrapper.m_c #tth-content {
    width: 100%;
    float: none;
    padding-right: 0px;
  }
  .wrapper.m_c #tth-column {
    display: none;
  }
}

.box_mid.style1 .box_mid-title {
  border-bottom: none;
}
.box_mid.style1 .box_mid-title .mid_title_l {
  font-size: 20px;
  color: #ee0000;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  padding: 0px 0px 10px 0px;
}
.box_mid.style2 .box_mid-title {
  border-bottom: none;
  background: none;
  padding: 0px 0px 10px 0px;
}
.box_mid.style2 .box_mid-title .mid_title_l {
  font-size: 20px;
  color: #db0006;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  text-align: center;
  position: relative;
  padding: 0px;
  margin: 0px;
  line-height: 1.1;
}
.box_mid.style2 .box_mid-title .mid_title_r {
  float: none;
  display: block;
  text-align: center;
  font-size: 14px;
  color: #777777;
  font-weight: 300;
}
.box_mid.ic_phone .mid_title_l:before {
  content: url("../images/ic_phone.png");
  padding-right: 9px;
  vertical-align: sub;
}
.box_mid.ic_users .mid_title_l:before {
  content: url("../images/ic_users.png");
  padding-right: 9px;
  vertical-align: sub;
}
.box_mid.ic_international .mid_title_l:before {
  content: url("../images/ic_international.png");
  padding-right: 9px;
  vertical-align: sub;
}
.box_mid.ic_book .mid_title_l:before {
  content: url("../images/ic_book.png");
  padding-right: 9px;
  vertical-align: sub;
}

.fr {
  float: right;
}

/*--------------------------------------------*/
.waring_panel {
  margin-bottom: 10px;
  border: 1px #ef5e09 solid;
  padding: 4px 9px;
  border-radius: 2px;
}

.btn_custom {
  color: #fff;
  background-image: linear-gradient(to right, #f28b42 0%, #ee5439 100%);
  background-repeat: repeat-x;
  border: none;
  display: inline-block;
  box-shadow: none;
  outline: none !important;
  color: #fff;
  padding: 8px 18px;
  -webkit-transistion: all 0.5s linear;
  -moz-transistion: all 0.5s linear;
  -ms-transistion: all 0.5s linear;
  -o-transistion: all 0.5s linear;
  transistion: all 0.5s linear;
  margin-right: 5px;
  outline: none;
  transition: all 500ms ease-out 0s;
}

.btn_custom_1 {
  color: #fff;
  padding: 8px 12px;
  border: 1px solid #cd1233;
  outline-color: #ccc;
  background: #ed3237;
  background: linear-gradient(#ed3237, #b3161a);
  -webkit-transistion: all 0.5s linear;
  -moz-transistion: all 0.5s linear;
  -ms-transistion: all 0.5s linear;
  -o-transistion: all 0.5s linear;
  transistion: all 0.5s linear;
  margin-right: 5px;
}

.btn_custom:hover {
  background-image: linear-gradient(to right, #ee5439 0%, #f28b42 100%);
  background-repeat: repeat-x;
  color: #fff;
  transition: all 500ms ease-out 0s;
}

.btn_custom_1:hover {
  background: #e54d42;
  color: #fff;
}

#BactoTop {
  text-indent: -99999px;
  cursor: pointer;
  background: url(../../images/backtotop.png) no-repeat scroll 11px 12px #DC4040;
  bottom: 40px;
  height: 40px;
  overflow: hidden;
  position: fixed;
  right: 15px;
  bottom: 45px;
  width: 41px;
  z-index: 999;
  -moz-border-radius: 50%;
  border: 3px #fff double;
  margin: 0px;
}

.captcha {
  line-height: 30px;
}

.captcha input {
  max-width: 150px;
  display: inline-block;
  margin-left: 10px;
  color: #404041;
}

.captcha span {
  display: inline-block;
  background-color: #6d6e71;
  background-image: linear-gradient(45deg, black 25%, transparent 25%, transparent 75%, black 75%, black), linear-gradient(45deg, black 25%, transparent 25%, transparent 75%, black 75%, black);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  padding: 0 15px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #969696;
  position: relative;
  top: 2px;
  -webkit-user-select: none;
  user-select: none;
}

.button {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  background: #f1f2f2;
  color: #404041;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background-image: none;
  border: none;
  border-radius: 0;
}

.button-blue {
  background: #ed3237;
  color: #fff;
}

.button-blue:hover {
  background: red;
  color: #fff;
}

/*----------------------------------------fixed_menu*/
.resp-tabDrop {
  display: none;
}

.resp-headings {
  display: none;
}

.resp-contents {
  margin-top: 15px;
}

@media (max-width: 1080px) {
  .resp-tablist {
    display: none;
  }

  .resp-tabDrop {
    display: block;
    width: 100%;
    height: 35px;
    font-size: 1.2em;
    margin: 1em 0 0 0;
    padding-left: 10px !important;
  }
}
.resp-contents table tr td {
  padding: 10px;
  word-wrap: break-word;
}