.primary {
  color: #0CB02B !important;
}

.primary-bg {
  background-color: #0CB02B !important;
}

.secondary {
  color: #22b024 !important;
}

.secondary-bg {
  background-color: #22b024 !important;
}

.inactive {
  color: #eaeaea !important;
}

.inactive-bg {
  background-color: #eaeaea !important;
}

.green {
  color: #22b024 !important;
}

.green-bg {
  background-color: #22b024 !important;
}

.orange {
  color: #D56F3E !important;
}

.orange-bg {
  background-color: #D56F3E !important;
}

.red {
  color: #AC0C0C !important;
}

.red-bg {
  background-color: #AC0C0C !important;
}

.black {
  color: #000000 !important;
}

.black-bg {
  background-color: #000000 !important;
}

.lgrey {
  color: #eeeeee !important;
}

.lgrey-bg {
  background-color: #eeeeee !important;
}

.dgrey {
  color: #707070 !important;
}

.dgrey-bg {
  background-color: #707070 !important;
}

.grey {
  color: #f4f4f4 !important;
}

.grey-bg {
  background-color: #f4f4f4 !important;
}

.dgreen {
  color: #086319 !important;
}

.dgreen-bg {
  background-color: #086319 !important;
}

.table-grey {
  color: #F1F1F1 !important;
}

.table-grey-bg {
  background-color: #F1F1F1 !important;
}

.blue {
  color: #21328D !important;
}

.blue-bg {
  background-color: #21328D !important;
}

.white {
  color: #ffffff !important;
}

.white-bg {
  background-color: #ffffff !important;
}

.field_grey {
  color: #E8E7E7 !important;
}

.field_grey-bg {
  background-color: #E8E7E7 !important;
}

* {
  box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: "Open Sans", serif;
}

.colours {
  position: fixed;
  width: 100%;
  top: 0;
}
.colours p {
  display: inline-block;
  margin-right: 10px;
}
.colours p:last-child {
  margin-right: 0;
}

.admin-panel {
  display: flex;
}

.menu {
  min-height: 100vh;
  padding: 15px 0 0;
  width: 100px;
  transition: width 0.25s;
  display: inline-block;
  position: relative;
  box-shadow: 2px 2px 6px rgba(112, 112, 112, 0.5);
  transition: width 0.25s;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.menu.active {
  width: 250px;
}
.menu.active .heading .logo {
  width: 80px;
}
.menu.active .heading .menu-icon span {
  transform: rotateY(90deg);
}
.menu.active .heading .menu-icon span:first-child {
  transform: rotate(-45deg);
}
.menu.active .heading .menu-icon span:last-child {
  transform: rotate(45deg);
}
.menu.active .heading .menu-icon span:first-child {
  top: 0;
}
.menu.active .heading .menu-icon span:last-child {
  top: 2px;
}
.menu.active .heading .menu-arrow {
  transform: rotate(360deg);
}
.menu.active .wrap a, .menu.active .bottom a {
  justify-content: flex-start;
}
.menu.active .wrap a img, .menu.active .bottom a img {
  margin-right: 15px;
}
.menu.active .wrap a span, .menu.active .bottom a span {
  display: block;
}
.menu .wrap a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.menu .wrap, .menu .bottom {
  overflow: hidden;
  transition: width 0.25s;
}
.menu .wrap a, .menu .bottom a {
  font-size: 14px;
  letter-spacing: 0.1px;
}
.menu .wrap a img, .menu .bottom a img {
  opacity: 0.75;
}
.menu .wrap a.active, .menu .bottom a.active {
  background: linear-gradient(to right, #0CB02B, #086319);
  color: #ffffff;
}
.menu .wrap a.active img, .menu .bottom a.active img {
  filter: invert(1);
  opacity: 1;
}
.menu .heading {
  padding: 0 0 15px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.menu .heading .logo {
  width: 50px;
  transition: width 0.25s;
  display: block;
  margin: 0 auto;
}
.menu .heading p {
  transition: opacity 0.25s;
  opacity: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  min-width: 140px;
}
.menu .heading .menu-icon {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  height: 14px;
  width: 20px;
}
.menu .heading .menu-icon span {
  transition: transform 0.25s, right 0.25s;
}
.menu .heading .menu-icon span:first-child {
  transform-origin: top right;
}
.menu .heading .menu-icon span:last-child {
  transform-origin: bottom right;
}
.menu .heading .menu-icon span:first-child, .menu .heading .menu-icon span:last-child {
  position: relative;
  right: 3px;
}
.menu .heading .menu-icon p {
  margin: 0;
  padding: 0;
}
.menu .heading .menu-icon span {
  width: 100%;
  height: 2px;
  display: block;
  margin-bottom: 4px;
  background-color: white;
}
.menu .heading .menu-arrow {
  position: absolute;
  right: -12px;
  font-size: 25px;
  top: 20px;
  cursor: pointer;
  transform: rotate(180deg);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu .heading .menu-arrow img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.menu .dropdown {
  position: relative;
}
.menu .dropdown p {
  cursor: pointer;
}
.menu .dropdown:before {
  position: absolute;
  top: 8px;
  right: 0;
  height: 0;
  width: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid white;
  border-bottom: 5px solid transparent;
  content: "";
  transition: transform 0.25s;
}
.menu .dropdown.js-opened:before {
  transform: rotate(90deg);
}
.menu .dropdown a {
  margin-left: 10px;
}
.menu .dropdown + a {
  margin-top: 0;
}
.menu .dropdown + .title {
  margin-top: 5px;
}
.menu .dropdown .links {
  overflow: hidden;
}
.menu .dropdown .links a {
  position: relative;
  padding-left: 10px;
  z-index: 1;
}
.menu .dropdown .links a:before {
  z-index: -1;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 4px;
  transition: background-color 0.25s, border-radius 0.25s, width 0.25s, height 0.25s, top 0.25s;
}
.menu .dropdown .links a:hover:before {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  top: 0;
}
.menu .title {
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 10px;
  margin-top: 10px;
}
.menu a {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 19px;
  color: rgba(0, 0, 0, 0.75);
  padding: 15px 20px;
  margin: 0px;
  justify-content: center;
}
.menu a img, .menu a .icon {
  max-width: 22px;
}
.menu a span {
  display: none;
}
.menu .bottom a {
  background-color: #F1F1F1;
}

.w100 {
  width: 100% !important;
}

.align-center {
  align-items: center;
}

.float-right {
  float: right;
}

.text-right {
  text-align: right !important;
}

.content {
  overflow: hidden;
  background: #F8F8F8;
  width: 100%;
  padding-top: 0px;
}
.content .header {
  width: 100%;
  min-height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.content .header .page-title {
  color: #086319;
}
.content .header .right-wrapper {
  font-family: "Open Sans", serif;
  display: flex;
}
.content .header .right-wrapper p, .content .header .right-wrapper a {
  border-right: 1px solid #0CB02B;
  margin: 10px 0px;
  padding: 0px 30px;
  align-items: center;
  text-align: center;
}
.content .header .right-wrapper p .time, .content .header .right-wrapper a .time {
  font-size: 25px;
}
.content .header .right-wrapper p.greetings, .content .header .right-wrapper a.greetings {
  padding-top: 20px;
}
.content .header .right-wrapper p .date, .content .header .right-wrapper a .date {
  font-family: "Open Sans", serif;
}
.content .header .right-wrapper a {
  border: none;
  text-decoration: none;
  color: #000000;
  align-items: center;
  display: flex;
  padding-right: 0px;
  font-size: 17px;
}
.content .header .right-wrapper a img {
  margin-right: 10px;
  width: 30px;
}
.content .body {
  padding: 20px 30px;
  width: 100%;
}
.content .body .heading {
  width: 100%;
  margin-top: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #086319;
}
.content .body .heading .btn {
  float: right;
  font-size: 12px;
  padding: -2px;
  min-width: 70px;
  text-align: center;
  color: white;
  text-transform: uppercase;
  border-radius: 9px;
  cursor: pointer;
}
.content .body .heading .btn svg {
  margin-right: 10px;
}
.content .body .page-heading {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
}
.content .body .page-heading .title {
  font-size: 22px;
  line-height: 27px;
  margin-top: 0;
  font-family: "Open Sans", serif;
  color: #086319;
  margin-bottom: 0;
}
.content .body .page-heading .subtitle {
  color: #707070;
  font-family: "Open Sans", serif;
  font-style: italic;
  margin-bottom: 0;
}
.content .body .page-heading .actions {
  display: flex;
}
.content .body .page-heading .actions .btn {
  display: inline-block;
}
.content .body .page-heading .actions .dataTables_filter {
  font-size: 14px;
  color: #707070;
  position: relative;
}
.content .body .page-heading .actions .dataTables_filter .search-icon {
  width: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.content .body .page-heading .actions .dataTables_filter input {
  font-size: inherit;
  color: inherit;
  padding: 10px;
  outline: none;
  border: 1px solid #0CB02B;
  border-radius: 10px;
  width: 250px;
  padding-left: 35px;
  padding-right: 25px;
  font-family: "Open Sans", serif;
}
.content .body .page-heading .actions .dataTables_filter input[type=search]::-webkit-search-decoration,
.content .body .page-heading .actions .dataTables_filter input[type=search]::-webkit-search-cancel-button,
.content .body .page-heading .actions .dataTables_filter input[type=search]::-webkit-search-results-button,
.content .body .page-heading .actions .dataTables_filter input[type=search]::-webkit-search-results-decoration {
  display: none;
}
.content .body .page-heading .actions .dataTables_filter svg {
  margin-left: -20px;
  cursor: pointer;
  display: inline;
}
.content .body .tab-title {
  background-color: #0CB02B;
  width: 100%;
  text-align: center;
  padding: 10px 5px;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.content .body .tabs {
  width: 100%;
  display: flex;
}
.content .body .tabs .tab {
  flex: 1 0 0;
  margin: 5px 5px 10px 5px;
  background-color: #eaeaea;
  color: #000000;
  text-align: center;
  overflow: hidden;
  padding: 10px 5px;
  cursor: pointer;
  text-transform: uppercase;
}
.content .body .tabs .tab:first-child {
  margin-left: 0px;
}
.content .body .tabs .tab:last-child {
  margin-right: 0px;
}
.content .body .tabs .tab.active {
  background-color: #086319;
  color: #ffffff;
}
.content .body .tab-contents .hide {
  display: none;
}
.content .body .fields {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.content .body .fields.tab-content {
  width: 100%;
}
.content .body .fields.tab-content .tab-pane {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  align-content: baseline;
}
.content .body .fields .view-product-button-div {
  align-self: center;
}
.content .body .fields .field {
  margin-right: 20px;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-right: 0;
}
.content .body .fields .field.half {
  width: calc(50% - 20px);
  margin-right: 20px;
}
.content .body .fields .field.third {
  width: calc(33.33% - 20px);
  margin-right: 20px;
}
.content .body .fields .field.required label:after {
  content: "*";
  margin-left: 2px;
  color: #AC0C0C;
}
.content .body .fields .field .info {
  display: none;
}
.content .body .fields .field label {
  margin-right: 10px;
  width: 100%;
  font-size: 14px;
}
.content .body .fields .field p {
  font-size: 14px;
}
.content .body .fields .field input:not([type=checkbox], [type=radio]) {
  width: 100%;
  height: 30px;
  appearance: none;
  border: 1px solid #E8E7E7;
  padding: 10px;
  margin-top: 10px;
  background-color: #E8E7E7;
  font-family: "Open Sans", serif;
  font-size: 14px;
}
.content .body .fields .field input:not([type=checkbox], [type=radio]).error {
  border-color: #AC0C0C;
}
.content .body .fields .field textarea {
  width: 100%;
  min-height: 100px;
  resize: none;
  padding: 10px;
  font-family: "Open Sans", serif;
  font-size: 14px;
}
.content .body .fields .field label.error {
  color: #d7182a;
}
.content .body .fields .field .select2-container {
  margin-top: 5px;
}
.content .body .fields .field .select2-container--default .select2-selection--single {
  height: 30px;
  padding: 0;
  border: 1px solid gray;
  border-radius: 5px;
}
.content .body .fields .field .select2-container--default .select2-selection--single .select2-selection__arrow b {
  top: 55% !important;
}
.content .body .fields .field .comment_field {
  display: none;
  width: 100%;
  margin: 15px !important;
  margin-bottom: 0px;
}
.content .body .fields .field.table-field {
  margin-bottom: 0px;
}
.content .body .fields .field.table-field input:not([type=checkbox], [type=radio]) {
  margin-top: 0px;
}
.content .body .fields .table-required:after {
  content: "*";
  margin-left: 2px;
  color: #AC0C0C;
}
.content .body .fields .submit-btn {
  order: 1;
  width: 100px;
}
.content .body .fields .contact-details-blocks {
  width: 100%;
  margin-right: 20px;
}
.content .body .split {
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
}
.content .body .split > .col {
  flex-wrap: wrap;
  display: flex;
  align-content: baseline;
}
.content .body .split .contact-details-blocks .contact-details-row {
  border-top: 1px solid #707070;
  padding-top: 20px;
}
.content .body .split.contact-details-row .third {
  width: calc(33.33% - 20px);
  margin-right: 20px;
}
@media (max-width: 1100px) and (min-width: 992px) {
  .content .body .split.contact-details-row .third {
    width: calc(50% - 20px);
  }
}
@media (max-width: 991px) {
  .content .body .split.contact-details-row .third {
    width: 100%;
  }
}
.content .body .split.contact-details-row .third button {
  margin-left: 0;
}
.content .body .split .col .comments-block, .content .body .split.contact-details-row .comments-block {
  width: 100%;
}
.content .body .split .col .comments-block .heading span, .content .body .split.contact-details-row .comments-block .heading span {
  display: none;
}
.content .body .split .col .comments-block .heading .btn, .content .body .split.contact-details-row .comments-block .heading .btn {
  margin-left: auto;
  margin-right: 0 !important;
}
.content .body .split .col .comments-block.show-header .header span, .content .body .split.contact-details-row .comments-block.show-header .header span {
  display: block;
}
.content .body .split .col .fields, .content .body .split.contact-details-row .fields {
  flex-direction: column;
  margin-right: 0;
}
.content .body .split .col .fields .field, .content .body .split.contact-details-row .fields .field {
  width: 100%;
  margin-right: 0;
}
.content .body .split .col.box, .content .body .split.contact-details-row.box {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}
.content .body .split .col.card, .content .body .split.contact-details-row.card {
  margin-bottom: 20px;
}
.content .body .split .col.card .header, .content .body .split.contact-details-row.card .header {
  color: #0CB02B;
  font-family: "Open Sans", serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 19px;
  border-bottom: 1px solid #0CB02B;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 0px;
  font-weight: 600;
}
.content .body .split .col.card .header .btn, .content .body .split.contact-details-row.card .header .btn {
  font-size: 11px;
}
.content .body .split .col.card .header.white-card, .content .body .split.contact-details-row.card .header.white-card {
  background-color: #ffffff;
}
.content .body .split .col.card table, .content .body .split.contact-details-row.card table {
  width: 100%;
  border-bottom: 1px solid #0CB02B;
}
.content .body .split .col.card table tr td, .content .body .split.contact-details-row.card table tr td {
  padding: 5px;
  font-size: 14px;
}
.content .body .split .col.card table tr td:first-child, .content .body .split.contact-details-row.card table tr td:first-child {
  padding-left: 20px;
  width: 40%;
}
.content .body .split .col.card table tr td.red, .content .body .split.contact-details-row.card table tr td.red {
  font-family: "Open Sans", serif;
  font-weight: 300;
}
.content .body .split .col.card table tr td.red svg, .content .body .split.contact-details-row.card table tr td.red svg {
  margin-right: 5px;
}
.content .body .split .col.card table tr td.text-center, .content .body .split.contact-details-row.card table tr td.text-center {
  text-align: center;
}
.content .body .split .col.card table tr:nth-child(odd), .content .body .split.contact-details-row.card table tr:nth-child(odd) {
  background-color: #f4f4f4;
}
.content .body .split .col.card table tr:nth-child(even), .content .body .split.contact-details-row.card table tr:nth-child(even) {
  background-color: #ffffff;
}
.content .body .split .col.card.red-card .header, .content .body .split.contact-details-row.card.red-card .header {
  color: #AC0C0C;
}
.content .body .split .col.card.red-card table, .content .body .split.contact-details-row.card.red-card table {
  border-bottom: 1px solid #AC0C0C;
}
.content .body .split .col.card.white-card, .content .body .split.contact-details-row.card.white-card {
  background-color: #ffffff;
}
.content .body .split .col.card .contact-details-table, .content .body .split.contact-details-row.card .contact-details-table {
  margin-top: 0;
}
.content .body .split .col.card .contact-details-table thead tr, .content .body .split.contact-details-row.card .contact-details-table thead tr {
  background: #F1F1F1;
}
.content .body .split .col.card .contact-details-table tr th, .content .body .split .col.card .contact-details-table tr td, .content .body .split.contact-details-row.card .contact-details-table tr th, .content .body .split.contact-details-row.card .contact-details-table tr td {
  padding-left: 5px;
}
.content .body .split .col.card .contact-details-table tr th:first-child, .content .body .split .col.card .contact-details-table tr td:first-child, .content .body .split.contact-details-row.card .contact-details-table tr th:first-child, .content .body .split.contact-details-row.card .contact-details-table tr td:first-child {
  width: 20%;
  padding-left: 5px;
}
.content .body .split .col {
  width: calc(50% - 20px);
  margin-right: 20px;
}
.content .body .split .col form {
  width: 100%;
}
.content .body .split .col-3 {
  width: calc(33% - 15px);
  margin-right: 15px;
}
.content .body .split .flex {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
  margin-right: 20px;
}
.content .body .split .flex .col {
  width: 100%;
}
.content .body .dataTables_wrapper {
  width: 100% !important;
  overflow-x: auto;
  color: #000000;
}
.content .body .dataTables_wrapper + .table-heading {
  margin-top: 15px;
}
.content .body .dataTables_wrapper .dataTables_filter {
  display: none;
  font-size: 14px;
  color: #707070;
}
.content .body .dataTables_wrapper .dataTables_filter svg {
  position: absolute;
  top: 10px;
  left: 80%;
}
.content .body .dataTables_wrapper .dataTables_filter input {
  font-size: inherit;
  color: inherit;
  padding: 10px;
  outline: none;
  border: 1px solid #0CB02B;
  border-radius: 4px;
  width: 250px;
  padding-left: 35px;
}
.content .body .dataTables_wrapper .table {
  margin-top: 5px;
  width: 100% !important;
  box-sizing: border-box;
  border-radius: 2px;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid #0CB02B;
}
.content .body .dataTables_wrapper .table thead tr td, .content .body .dataTables_wrapper .table thead tr th, .content .body .dataTables_wrapper .table tbody tr td, .content .body .dataTables_wrapper .table tbody tr th {
  padding-left: 25px;
  padding-right: 10px;
  border-right: 1px solid rgba(112, 112, 112, 0.5);
}
.content .body .dataTables_wrapper .table thead tr td:last-child, .content .body .dataTables_wrapper .table thead tr th:last-child, .content .body .dataTables_wrapper .table tbody tr td:last-child, .content .body .dataTables_wrapper .table tbody tr th:last-child {
  border-right: none;
}
.content .body .dataTables_wrapper .table thead tr td input:not([type=checkbox], [type=radio]), .content .body .dataTables_wrapper .table thead tr th input:not([type=checkbox], [type=radio]), .content .body .dataTables_wrapper .table tbody tr td input:not([type=checkbox], [type=radio]), .content .body .dataTables_wrapper .table tbody tr th input:not([type=checkbox], [type=radio]) {
  width: 100%;
  height: 30px;
  appearance: none;
  border: 1px solid #E8E7E7;
  padding: 10px;
  background-color: #E8E7E7;
  font-family: "Open Sans", serif;
  font-size: 14px;
}
.content .body .dataTables_wrapper .table thead tr td input:not([type=checkbox], [type=radio]).error, .content .body .dataTables_wrapper .table thead tr th input:not([type=checkbox], [type=radio]).error, .content .body .dataTables_wrapper .table tbody tr td input:not([type=checkbox], [type=radio]).error, .content .body .dataTables_wrapper .table tbody tr th input:not([type=checkbox], [type=radio]).error {
  border-color: #AC0C0C;
}
.content .body .dataTables_wrapper .table thead tr td label.error, .content .body .dataTables_wrapper .table thead tr th label.error, .content .body .dataTables_wrapper .table tbody tr td label.error, .content .body .dataTables_wrapper .table tbody tr th label.error {
  color: #d7182a;
}
.content .body .dataTables_wrapper .table thead tr td .action-btn, .content .body .dataTables_wrapper .table thead tr th .action-btn, .content .body .dataTables_wrapper .table tbody tr td .action-btn, .content .body .dataTables_wrapper .table tbody tr th .action-btn {
  min-width: 30px;
  padding: 5px;
  margin-left: 0;
}
.content .body .dataTables_wrapper .table thead tr td .action-btn svg, .content .body .dataTables_wrapper .table thead tr th .action-btn svg, .content .body .dataTables_wrapper .table tbody tr td .action-btn svg, .content .body .dataTables_wrapper .table tbody tr th .action-btn svg {
  margin-right: 0px;
}
.content .body .dataTables_wrapper .table thead tr {
  background-color: #F1F1F1;
}
.content .body .dataTables_wrapper .table thead tr th {
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid #0CB02B;
  font-weight: 600;
  font-family: "Open Sans", serif;
}
.content .body .dataTables_wrapper .table thead .sorting, .content .body .dataTables_wrapper .table thead .sorting_desc, .content .body .dataTables_wrapper .table thead .sorting_asc {
  background-position: left;
}
.content .body .dataTables_wrapper .table thead .sorting_desc {
  background-image: url(../images/icons/sort_desc.png);
}
.content .body .dataTables_wrapper .table thead .sorting_asc {
  background-image: url(../images/icons/sort_asc.png);
}
.content .body .dataTables_wrapper .table tbody tr {
  transition: background-color 0.25s;
}
.content .body .dataTables_wrapper .table tbody tr:hover {
  background-color: rgba(8, 99, 25, 0.15);
}
.content .body .dataTables_wrapper .table tbody tr td {
  font-size: 14px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: "Open Sans", serif;
}
.content .body .dataTables_wrapper .table .text-center {
  text-align: center;
}
.content .body .dataTables_wrapper .table .text-left {
  text-align: left;
}
.content .body .dataTables_wrapper .table tr {
  background-color: white;
  cursor: pointer;
}
.content .body .dataTables_wrapper .table tr:nth-child(even) {
  background-color: #f4f4f4;
}
.content .body .dataTables_wrapper .table tr:last-child td {
  border-bottom: none;
}
.content .body .dataTables_wrapper .table tr .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .body .dataTables_wrapper .table tr .btn-action .btn {
  border: none;
  background: none;
  min-width: 20px;
  margin-left: 0px;
}
.content .body .dataTables_wrapper .table tr .btn-action a {
  padding: 5px 10px;
}
.content .body .dataTables_wrapper .table tr .btn-action .disable-btn {
  color: #AC0C0C;
}
.content .body .dataTables_wrapper .table tr .btn-action .enable-btn {
  color: #0CB02B;
}
.content .body .dataTables_wrapper .bottom {
  width: 100%;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content .body .dataTables_wrapper .bottom .dataTables_info {
  padding-top: 0px;
  text-align: left;
  color: #000000 !important;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate .disabled {
  opacity: 0.5;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate span .paginate_button {
  appearance: none;
  color: #707070 !important;
  border: none;
  transition: background 0.25s;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate span .paginate_button.current, .content .body .dataTables_wrapper .bottom .dataTables_paginate span .paginate_button.current:hover {
  background: #086319;
  border: none;
  color: white !important;
  border-radius: 2px;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate span .paginate_button:hover, .content .body .dataTables_wrapper .bottom .dataTables_paginate span .paginate_button:active {
  background: rgba(8, 99, 25, 0.75);
  border-radius: 2px;
  border: none;
  color: white !important;
  box-shadow: none;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.next, .content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.previous {
  background-color: none;
  background: none;
  border: none;
  color: #086319 !important;
  transition: color 0.25s, opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 25px;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.next:active, .content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.next:focus, .content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.previous:active, .content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.previous:focus {
  box-shadow: none;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.next:hover, .content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.previous:hover {
  opacity: 0.75;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.next.disabled, .content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.previous.disabled {
  cursor: default;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.next.disabled:hover, .content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.previous.disabled:hover {
  opacity: 0.5;
}
.content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.next img, .content .body .dataTables_wrapper .bottom .dataTables_paginate .paginate_button.previous img {
  max-width: 25px;
  display: inline-block;
  margin: 0 10px;
}
.content .body .dataTables_wrapper .bottom .dataTables_length {
  font-size: 14px;
  color: #707070;
  float: none;
}
.content .body .dataTables_wrapper .bottom .dataTables_length label {
  display: flex;
  align-items: center;
}
.content .body .dataTables_wrapper .bottom .dataTables_length label select {
  border: 1px solid rgba(112, 112, 112, 0.5);
  color: #707070;
}
.content .body .dataTables_wrapper .bottom .dataTables_length label .select2-container {
  margin: 0 10px;
}
.content .body .dataTables_wrapper .bottom .dataTables_length label span {
  border-radius: 0px;
}
.content .body .delete-btn {
  color: #AC0C0C !important;
  cursor: pointer;
}
.content .body .delete-btn img {
  width: 18px;
}
.content .body .edit-btn {
  color: #0CB02B !important;
}
.content .body .view-btn {
  color: #21328D !important;
}
.content .body .comments {
  width: 100%;
}
.content .body .comments .comment-wrapper {
  margin-bottom: 15px;
  border-bottom: 1px solid #0CB02B;
}
.content .body .comments .comment-wrapper .comment-section {
  border: 1px solid #0CB02B;
  padding: 15px;
  background: #F1F1F1;
  margin-bottom: 15px;
}
.content .body .comments .comment-wrapper .comment-section .head {
  display: flex;
}
.content .body .comments .comment-wrapper .comment-section .head .btn-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.content .body .comments .comment-wrapper .comment-section .head .btn-actions .action {
  cursor: pointer;
  border: none;
  background: transparent;
  width: 15px;
}
.content .body .comments .comment-wrapper .comment-section .head .btn-actions .action img {
  width: 15px;
}
.content .body .comments .comment-wrapper .comment-section .head .btn-actions .update_actions button {
  transform: scale(1.2);
}
.content .body .comments .comment-wrapper .comment-section .head .title {
  margin-right: 20px;
}
.content .body .comments .comment-wrapper .comment-section .head .title svg {
  margin-right: 5px;
}
.content .body .comments .comment-wrapper .comment-section p {
  margin-bottom: 0px;
  color: gray;
  font-family: "Open Sans", serif;
  font-style: italic;
}
.content .body .comments .comment-wrapper .comment-section .in_comment_msg {
  margin-top: 10px;
  border: none;
  background: none;
  width: 100%;
}
.content .body .comments .comment-wrapper .comment-section .username {
  font-weight: 600;
  font-family: "Open Sans", serif;
}
.content .body .comments .comment-wrapper .comment-timestamp {
  padding: 15px;
  background: #F1F1F1;
  margin-bottom: 15px;
}
.content .body .comments .comment-wrapper .comment-timestamp p {
  margin: 0;
}
.content .body .comments .comment-wrapper .comment-timestamp p svg {
  margin-right: 5px;
}
.content .body .comments .comment-wrapper .comment-timestamp p .timestamp {
  float: right;
}
.content .body .comments .comment-wrapper .comment-timestamp p .username {
  font-weight: 700;
  font-family: "Open Sans", serif;
}
.content .body .comments .comment-wrapper.more-comments {
  display: none;
}
.content .body .comments .more-comments-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.content .body .comments .more-comments-wrapper a {
  text-decoration: none;
  color: #000;
  font-family: "Open Sans", serif;
  font-weight: 300;
}
.content .body .comments .more-comments-wrapper .btn {
  float: right;
  margin-left: auto;
}
.content .body .btn {
  display: inline-block;
  padding: 10px 20px;
  min-width: 100px;
  text-align: center;
  color: white;
  text-transform: uppercase;
  border-radius: 10px;
  margin-left: 15px;
  text-decoration: none;
  font-family: "Open Sans", serif;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.content .body .btn svg {
  margin-right: 10px;
}
.content .body .btn.ml0 {
  margin-left: 0px;
}

.dialog {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  display: none;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
}
.dialog .dialog-content {
  width: 80%;
  position: relative;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}
.dialog .dialog-content .dialog-header {
  border-bottom: 1px solid gray;
  padding-bottom: 5px;
}
.dialog .dialog-content .dialog-header .title {
  color: #0CB02B;
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
  margin: 0px;
}
.dialog .dialog-content .dialog-body {
  margin-top: 20px;
  max-height: 400px;
  overflow-y: auto;
}
.dialog .close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
}
.dialog .close:hover {
  background: #0CB02B;
}

.price-logs-table tbody tr:hover {
  color: #fff;
  background-color: #22b024;
}
.price-logs-table tr th, .price-logs-table tr td {
  text-align: center;
  border: 1px solid gray;
}

.settings-wrapper {
  overflow-y: auto;
}
.settings-wrapper .settings-table tr {
  cursor: default;
}
.settings-wrapper .settings-table tr.add_value_row {
  display: none;
}
.settings-wrapper .settings-table tr.add_value_row:hover {
  background-color: #eeeeee !important;
}
.settings-wrapper .settings-table tr td:first-child {
  width: 80%;
}
.settings-wrapper .settings-table tr td .btn {
  border: none;
  background: transparent;
  cursor: pointer;
}
.settings-wrapper .settings-table tr td input {
  width: 100%;
}

.form-wizard {
  font-family: "Open Sans", serif;
  background: #ffffff;
  padding: 30px 50px;
  box-shadow: 5px 5px 5px rgba(112, 112, 112, 0.3);
  width: 90%;
  margin: 3% auto;
}
@media (max-width: 768px) {
  .form-wizard {
    width: 100%;
    padding: 20px;
  }
}
.form-wizard .nav {
  border-bottom: 1px solid #21328D;
  padding-bottom: 20px;
  margin-bottom: 20px !important;
}
.form-wizard .nav .nav-item .nav-link {
  color: #21328D;
  text-align: left !important;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Open Sans", serif;
  font-weight: 300;
}
.form-wizard .nav .nav-item .nav-link::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 35px;
  margin-right: 10px;
}
.form-wizard .nav .nav-item .nav-link:first-child {
  padding-left: 0px !important;
}
.form-wizard .nav .nav-item .nav-link:last-child {
  padding-right: 0px !important;
}
.form-wizard .nav .nav-item .nav-link.done {
  opacity: 0.7;
}
.form-wizard .nav .nav-item .nav-link.done::before {
  content: "\f058";
  font-weight: 900;
}
.form-wizard .nav .nav-item .nav-link.active::before {
  content: "\f111";
  font-weight: 900;
}
.form-wizard .toolbar {
  text-align: center !important;
}
.form-wizard .toolbar .btn {
  display: inline-block;
  padding: 10px 20px !important;
  min-width: 100px !important;
  text-align: center !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  border-radius: 10px !important;
  margin-left: 15px !important;
  text-decoration: none !important;
  font-family: "Open Sans", serif !important;
  font-weight: 300 !important;
  border: none !important;
}
.form-wizard .toolbar .btn.sw-btn-prev {
  background-color: #086319 !important;
}
.form-wizard .toolbar .btn.sw-btn-prev::before {
  content: "\f0e2";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  margin-right: 10px;
}
.form-wizard .toolbar .btn.sw-btn-next {
  background-color: #21328D !important;
}
.form-wizard .toolbar .btn.wizard-save-btn {
  display: none;
}

.auth-wrapper {
  background: url("/images/background.png");
  background-size: cover;
}
.auth-wrapper .container {
  min-height: 100vh;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  padding: 0 5%;
  align-items: center;
}
@media (max-width: 991px) {
  .auth-wrapper .container {
    flex-direction: column;
  }
}
.auth-wrapper .heading-wrapper {
  font-family: "Open Sans", serif;
  font-size: 30px;
  color: #086319;
}
@media (max-width: 991px) {
  .auth-wrapper .heading-wrapper {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .auth-wrapper .heading-wrapper {
    width: calc(100% - 550px);
  }
}
.auth-wrapper .heading-wrapper .title {
  border-left: 5px solid #086319;
  padding-left: 30px;
  font-size: 60px;
  line-height: 70px;
}
@media (max-width: 1300px) and (min-width: 1101px) {
  .auth-wrapper .heading-wrapper .title {
    font-size: 45px;
    line-height: 55px;
    padding-left: 25px;
  }
}
@media (max-width: 1100px) and (min-width: 501px) {
  .auth-wrapper .heading-wrapper .title {
    font-size: 35px;
    line-height: 45px;
    padding-left: 15px;
  }
}
@media (max-width: 500px) {
  .auth-wrapper .heading-wrapper .title {
    font-size: 30px;
    line-height: 40px;
    padding-left: 10px;
  }
}
.auth-wrapper .heading-wrapper .title span {
  font-weight: 600;
  font-family: "Open Sans", serif;
}
.auth-wrapper .content {
  padding: 0;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  background: #F8F8F8;
  position: relative;
  margin: 2% 0px;
}
@media (min-width: 992px) {
  .auth-wrapper .content {
    width: 550px;
  }
}
@media (max-width: 991px) and (min-width: 651px) {
  .auth-wrapper .content {
    width: 75%;
  }
}
@media (max-width: 650px) {
  .auth-wrapper .content {
    width: 100%;
  }
}
.auth-wrapper .content .body {
  background: none;
  text-align: center;
  padding: 40px 40px 0;
}
.auth-wrapper .content .body .title {
  color: #086319;
  font-family: "Open Sans", serif;
  font-weight: 300;
  font-size: 22px;
}
.auth-wrapper .content .body .description {
  color: #707070;
  font-family: "Open Sans", serif;
  font-weight: 300;
  font-size: 16px;
}
.auth-wrapper .content .body .logo {
  width: 120px;
}
.auth-wrapper .content .body .split {
  text-align: left;
  display: block !important;
}
.auth-wrapper .content .body .split label {
  font-size: 14px;
  font-family: "Open Sans", serif;
  font-weight: 300;
  color: #707070;
}
.auth-wrapper .content .body .split input {
  width: 100% !important;
}
.auth-wrapper .content .body .split a {
  float: right;
  text-decoration: none;
  color: #086319;
  font-family: "Open Sans", serif;
  font-size: 16px;
  margin-top: 5px;
  font-weight: 700;
}
.auth-wrapper .content .body .split .btn-wrapper {
  margin: 40px auto;
  text-align: center;
}
.auth-wrapper .content .body .split .btn-wrapper button {
  cursor: pointer;
}
.auth-wrapper .content .footer-wrapper {
  padding: 20px;
  border-top: 1px solid #0CB02B;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-wrapper .content .footer-wrapper a {
  text-decoration: none;
  color: #086319;
  font-family: "Open Sans", serif;
  font-weight: 300;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.auth-wrapper .content .footer-wrapper a img {
  color: #000000;
  margin-right: 10px;
  max-width: 20px;
  opacity: 0.75;
}
.auth-wrapper .content .footer-wrapper a.tel {
  float: right;
}/*# sourceMappingURL=style.css.map */