html > body {
  background-color: #fff;
  color: #636b6f;
  font-size: 100%;
  font-weight: 200;
  margin: 0;
}
@font-face {
  html > body {
    font-family: "Inter";
    src: url("/public/fonts/Inter-Bold.ttf");
    font-style: normal;
    font-weight: normal;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 75%;
  }

  .card-body {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 87.5%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 970px;
  }
}
.full-height {
  height: 70vh;
}

.flex-center {
  align-items: center;
  display: flex;
  justify-content: center;
}

.position-ref {
  position: relative;
}

.top-right {
  position: absolute;
  right: 10px;
  top: 18px;
}

.content {
  text-align: center;
}

.title {
  font-size: 24px;
}

.links > a {
  color: #636b6f;
  padding: 0 25px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.m-b-md {
  margin-bottom: 0px;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
  background-color: #8dc73f !important;
  border-color: #8dc73f !important;
}

.btn {
  line-height: 1.2 !important;
  border-radius: 6px !important;
}

.btn:focus, .btn.focus {
  box-shadow: none !important;
}

.form-control.form-search {
  background-image: URL("../images/icons/search.svg");
  background-repeat: no-repeat;
  background-position: 6px 55%;
  padding-left: 30px;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.375rem 0.75rem !important;
  font-size: 1rem !important;
  min-height: 3.125rem !important;
}

.input-lg {
  line-height: 2.5rem !important;
}

.text-black {
  color: black !important;
}

.custom-select-lg {
  height: 3.5rem !important;
}

.label-text {
  font-size: 0.9rem;
}

.input-lg {
  height: 3.125rem;
}

.form-control {
  margin: auto;
  height: 3.125rem;
}

.font-weight-bold {
  font-weight: 600 !important;
}

.navbar .navbar-collapse b-navbar-brand {
  margin-right: 20px;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  border: 1px solid #F6F8F9;
  box-sizing: border-box;
  /* Shadow / Elevation 4 */
  box-shadow: 0px 0px 1px rgba(26, 32, 36, 0.32), 0px 12px 24px rgba(91, 104, 113, 0.24);
  border-radius: 6px;
  padding: 10px;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  /* Light Gray / Light Gray 5 */
  background: #F6F8F9;
  border-radius: 4px;
}
.navbar .navbar-collapse .navbar-nav .nav-item a {
  font-weight: 400;
  color: #000;
  line-height: 24px;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-toggle {
  background-image: URL("../images/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: 100% 55%;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-toggle::after {
  border: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-exit {
  background-image: URL("../images/icons/exit.svg");
  background-repeat: no-repeat;
  background-position: 0 55%;
  padding-left: 25px;
}

.nav-pills .nav-item {
  margin-right: 10px;
}
.nav-pills .nav-item a {
  color: #252C32;
  font-weight: 400;
  border-bottom: 1px solid #DDE2E4;
  border-radius: 0;
  padding: 10px 0;
}
.nav-pills .nav-item.active a {
  color: #000;
  font-weight: 600;
  border-bottom: 1px solid #000;
}
.nav-pills .nav-item:hover a {
  color: #000;
  font-weight: 600;
  border-bottom: 1px solid #000;
}

.b-pagination .page-item .page-link {
  border: 0;
  border-radius: 4px;
  padding: 5px 7px;
}
.b-pagination .page-item.active button {
  color: #252C32;
  background-color: #E5E9EB;
  border-color: #E5E9EB;
}
.b-pagination .page-item button {
  color: #252C32;
}

#sidebar-toggle {
  position: absolute;
  left: -9999px;
  display: none;
}

.mobile-menu-hamburger {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 3rem;
  cursor: pointer;
  transition: 0.4s;
  margin-left: 1rem;
  margin-bottom: 0;
}

.mobile-menu-icon {
  display: block;
  position: relative;
  background: #28a745;
  width: 90%;
  height: 2px;
  transition: 0.4s;
}

.mobile-menu-icon::after, .mobile-menu-icon::before {
  content: "";
  display: block;
  position: absolute;
  background: #28a745;
  width: 100%;
  height: 2px;
  transition: 0.2s;
}

.mobile-menu-icon::after {
  top: 6px;
}

.mobile-menu-icon::before {
  top: -6px;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-hamburger .mobile-menu-icon {
  background: transparent;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-hamburger .mobile-menu-icon::before, .mobile-menu-checkbox:checked ~ .mobile-menu-hamburger .mobile-menu-icon::after {
  top: 0;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-hamburger .mobile-menu-icon::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.mobile-menu-checkbox:checked ~ .mobile-menu-hamburger .mobile-menu-icon::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

@media (max-width: 767px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #fff;
  }

  .container {
    margin-top: 3rem;
  }

  .mobile-menu-hamburger {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 3rem;
    left: -100%;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 1.25rem;
    transition: left 0.5s;
  }
  .mobile-menu .btn {
    margin-bottom: 1rem;
  }

  .mobile-menu-checkbox:checked ~ .mobile-menu-hamburger ~ .mobile-menu {
    left: 0;
  }
}
.barcode-product-list {
  height: 90%;
  max-width: 960px;
  background-color: white;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 1rem;
}

.barcode-product-item {
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.barcode-product-item:hover {
  border: 1px solid #3490dc;
}

#app .right-bar button {
  margin-top: 7px;
}
#app .per-page {
  float: right;
}
#app .per-page .custom-select {
  display: inline-block;
  width: 70px;
  margin-right: 10px;
}
#app .products-table .image, #app .crops-table .image {
  width: 150px;
}
#app .products-table .image img, #app .crops-table .image img {
  max-width: 150px;
}

.table thead tr th {
  background: transparent;
  border: 0;
  color: #6E7C87;
  font-weight: 400;
}
.table tbody tr {
  border-bottom: 1px solid #E5E9EB;
}
.table tbody tr:first-child {
  border-top: 1px solid #E5E9EB;
}
.table tbody tr td {
  border: 0;
  font-weight: 400;
}
.table tbody tr td:first-child img {
  width: 100px;
}
.table tbody tr td .links img {
  width: 16px;
}
.table tbody tr td .links .icon-trash {
  width: 14px;
}

.table .flip-list-move {
  transition: transform 1s;
}

.modal-dialog h5 {
  color: #252C32;
  font-weight: 600;
}
.modal-dialog .modal-body .gallery .imageHolder {
  display: block;
  width: 150px;
  height: 150px;
  position: relative;
  border: 1px solid #ccc;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  text-align: center;
  cursor: pointer;
}
.modal-dialog .modal-body .gallery .imageHolder .description {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  opacity: 0.9;
  background: #36690b;
  padding: 5px 0;
  color: #fff;
}
.modal-dialog .modal-body .gallery .imageHolder .delete {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 29px;
  height: 29px;
  color: #fff;
  background: #b8c2cc;
  border-radius: 5px;
  cursor: pointer;
}
.modal-dialog .modal-body .gallery .imageHolder .delete svg {
  width: 20px;
  height: 20px;
}
.modal-dialog .modal-body .gallery .imageHolder .main {
  position: absolute;
  top: 4px;
  right: 34px;
  width: 29px;
  height: 29px;
  background: #b8c2cc;
  border-radius: 5px;
  cursor: pointer;
}
.modal-dialog .modal-body .gallery .imageHolder .main img {
  width: 20px;
  height: 20px;
}
.modal-dialog .modal-body .gallery .imageHolder .img-thumbnail {
  max-height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-dialog .modal-body .preview img {
  width: 100%;
  max-width: 100%;
}
.modal-dialog .modal-body label {
  margin-top: 10px;
  font-weight: 400;
  color: #252C32;
}
.modal-dialog .modal-body label.first-label {
  margin-top: 0;
}
.modal-dialog .modal-body .custom-file-label {
  margin: 0;
}
.modal-dialog .modal-body .d-flex {
  align-items: center;
  justify-content: flex-end;
}
.modal-dialog .modal-body .d-flex .line {
  height: 60%;
  width: 1px;
  background-color: #cccccc;
  display: block;
}
.modal-dialog .modal-body .b-icon {
  margin-right: 7px;
}

.gallery .imageHolder {
  display: block;
  width: 150px;
  height: 150px;
  position: relative;
  border: 1px solid #ccc;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  text-align: center;
  cursor: pointer;
}
.gallery .imageHolder .description {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  opacity: 0.9;
  background: #36690b;
  padding: 5px 0;
  color: #fff;
}
.gallery .imageHolder .delete {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 29px;
  height: 29px;
  color: #fff;
  background: #b8c2cc;
  border-radius: 5px;
  cursor: pointer;
}
.gallery .imageHolder .delete svg {
  width: 20px;
  height: 20px;
}
.gallery .imageHolder .main {
  position: absolute;
  top: 4px;
  right: 34px;
  width: 29px;
  height: 29px;
  background: #b8c2cc;
  border-radius: 5px;
  cursor: pointer;
}
.gallery .imageHolder .main img {
  width: 20px;
  height: 20px;
}
.gallery .imageHolder .img-thumbnail {
  max-height: 100%;
  border: 0;
  border-radius: 0;
}

.chat #area {
  width: 100%;
  min-height: 200px;
  max-height: 400px;
  background: #f5f5f5;
  padding: 10px;
  overflow-y: auto;
}
.chat #area .cloud {
  display: block;
  width: 70%;
  padding: 10px;
  background: #fff;
  border-radius: 4px;
  margin-top: 10px;
}
.chat #area .cloud.right {
  border-radius: 4px 4px 0 4px;
  margin-left: auto;
}
.chat #area .cloud.left {
  border-radius: 4px 4px 4px 0;
}
.chat #area .cloud .header {
  display: block;
  width: auto;
}
.chat #area .cloud .message {
  display: block;
  width: auto;
}
.chat #area .cloud .message .file {
  display: block;
  width: auto;
}
.chat #area .cloud .footer {
  display: block;
  width: auto;
  color: #81189a;
  text-align: right;
}

.ck-balloon-panel {
  z-index: 1060 !important;
}

.ck-content blockquote {
  border-left: 5px solid #487412 !important;
}

.ck-content h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  background: #487412;
  border-radius: 12px;
  padding: 16px;
}

.ck-content h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  background: #EBFAD9;
  border-radius: 12px;
  padding: 16px;
  color: #212322;
}

.ck-editor__editable {
  min-height: 400px;
}

.article-file .article-area {
  border: 1px solid #ccc;
  width: 100%;
  height: 250px;
  overflow-y: auto;
}
.article-file .article-area .img-thumbnail {
  display: inline-block;
  width: 100px;
  height: 100px;
  margin: 0 10px 10px 0;
}
.article-file .file-hidden {
  display: none;
}
.article-file .file-label {
  display: block;
  cursor: pointer;
  float: right;
}