:root {
  --app-primary: #EE7A10;
  --app-primary-2: #F2AB04;
  --app-gray-100: #bbbbbb;
  --app-gray-200: #9b9b9b;
  --app-gray-300: #727272;
  --app-gray-400: #565656;
  --app-gray-500: #333333;
}

.text-primary{
  color: var(--app-primary)!important;
  transition: all 0.3s ease-in-out;
}
a.text-primary:active,
a.text-primary:hover,
.text-primary:active,
.text-primary:hover{
  color: var(--app-primary-2)!important;
  transition: all 0.3s ease-in-out;
}

.text-gray-500 {
  color: var(--gray-500) !important;
}

.text-gray-400 {
  color: var(--gray-400) !important;
}

.text-gray-300 {
  color: var(--gray-300) !important;
}

.text-gray-200 {
  color: var(--gray-200) !important;
}

.text-gray-100 {
  color: var(--gray-100) !important;
}

.app-title {
  font-size: 22px;
  margin: 0;
  font-weight: 500;
}

nav ol.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

nav ol.breadcrumb .breadcrumb-item a {
  color: var(--app-primary);
  font-size: 14px;
}

nav ol.breadcrumb .breadcrumb-item.active a {
  color: var(--app-gray-300);
}

.app-card {
  padding: 20px;
}

.section-title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.section-description {
  margin: 0;
  font-size: 14px;
  color: var(--app-gray-300);
  font-weight: 300;
}

.btn.btn-primary {
  background: var(--app-primary);
  background: linear-gradient(139deg, var(--app-primary-2) 0%, var(--app-primary) 100%);
  border: 0px;
  font-size: 14px;
  font-weight: 300;
}

.btn.btn-seconday {
  background: var(--gray-400);
  color: #ffffff;
  background: linear-gradient(139deg, #A2A2A2 0%, #6F6F6F 100%);
  border: 0px;
  font-size: 14px;
  font-weight: 300;
}

.btn-outline-primary {
  color: var(--app-primary)!important;
  border-color: var(--app-primary)!important;
  box-shadow: none;
}
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:hover {
  box-shadow: none;
  color: #fff!important;
  background-color: var(--app-primary)!important;
  border-color: var(--app-primary)!important;
}

.table thead th {
  border-bottom: 2px solid #f9f9f9;
  font-weight: 400;
  font-size: 14px;
  color: var(--app-gray-300);
  vertical-align: middle;
  border-top: 0px;
}

.table tbody td {
  border-bottom: 2px solid #f9f9f9;
  font-weight: 400;
  font-size: 12px;
  color: var(--app-gray-500);
  vertical-align: middle;
}

.table tbody>tr:last-of-type>td {
  border-bottom: 0px
}

.pill {
  background-color: var(--app-gray-100);
  border-radius: 50px;
  display: inline-flex;
  padding: 4px 18px;
  font-weight: 300;
  font-size: 12px;
  color: var(--white);
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.pill.pill-primary {
  background: var(--app-primary);
  background: linear-gradient(139deg, var(--app-primary-2) 0%, var(--app-primary) 100%);
}

.pill.pill-secondary {
  background: #6F6F6F;
  background: linear-gradient(139deg, #A2A2A2 0%, #6F6F6F 100%);
}

.pill.pill-warning {
  background: #D404F2;
  background: linear-gradient(139deg, #D404F2 0%, #1071EE 100%);
}

.pill.pill-success {
  background: #04F2D1;
  background: linear-gradient(139deg, #04F2D1 0%, #65D2AE 100%);
}

.pill.pill-danger {
  background: #F20404;
  background: linear-gradient(139deg, #F20404 0%, #EE10A2 100%);
}

.dropdown-menu .dropdown-item {
  font-weight: 400;
  font-size: 12px;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: var(--app-primary);
}

.text-highlight,
.text-highlight:hover,
.text-highlight:active {
  color: var(--app-primary);
}

.main-footer {
  font-size: 12px;
}

.main-footer {
  font-weight: 300;
  color: var(--app-gray-400);
}

.main-footer strong {
  font-weight: 300;
  color: var(--app-primary);
}

.fs-38 {
  font-size: 38px;
}

.fs-36 {
  font-size: 36px;
}

.fs-34 {
  font-size: 34px;
}

.fs-32 {
  font-size: 32px;
}

.fs-30 {
  font-size: 30px;
}

.fs-28 {
  font-size: 28px;
}

.fs-26 {
  font-size: 26px;
}

.fs-24 {
  font-size: 24px;
}

.fs-22 {
  font-size: 22px;
}

.fs-20 {
  font-size: 20px;
}

.fs-18 {
  font-size: 18px;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

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

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}


.w-100 {
  max-width: 100% !important;
  width: 100% !important;
}

.w-95 {
  max-width: 95% !important;
  width: 100% !important;
}

.w-90 {
  max-width: 90% !important;
  width: 100% !important;
}

.w-85 {
  max-width: 85% !important;
  width: 100% !important;
}

.w-80 {
  max-width: 80% !important;
  width: 100% !important;
}

.w-75 {
  max-width: 75% !important;
  width: 100% !important;
}

.w-70 {
  max-width: 70% !important;
  width: 100% !important;
}

.w-65 {
  max-width: 65% !important;
  width: 100% !important;
}

.w-60 {
  max-width: 60% !important;
  width: 100% !important;
}

.w-55 {
  max-width: 55% !important;
  width: 100% !important;
}

.w-50 {
  max-width: 50% !important;
  width: 100% !important;
}

.w-45 {
  max-width: 45% !important;
  width: 100% !important;
}

.w-40 {
  max-width: 40% !important;
  width: 100% !important;
}

.w-35 {
  max-width: 35% !important;
  width: 100% !important;
}

.w-30 {
  max-width: 30% !important;
  width: 100% !important;
}

.w-25 {
  max-width: 25% !important;
  width: 100% !important;
}

.w-20 {
  max-width: 20% !important;
  width: 100% !important;
}

.w-15 {
  max-width: 15% !important;
  width: 100% !important;
}

.w-10 {
  max-width: 10% !important;
  width: 100% !important;
}

.w-5 {
  max-width: 5% !important;
  width: 100% !important;
}

.w-0 {
  max-width: 0% !important;
  width: 0% !important;
}

.form-control {
  font-size: 14px;
  font-weight: 300;
}

.form-control:focus {
  border-color: var(--app-primary-2);
}
.page-item .page-link{
  font-size: 12px;
}
.cursor-pointer{
  cursor: pointer!important;
}
.form-check{
  accent-color: #FFB300;
  color: #fff;
}
.app-color-input{
  width: 30px;
  height: 30px;
  border: 0;
  box-shadow: inset 0 0 130px #fff;
  outline: 0;
}
.bg-success {
  background-color: #c1d9c6 !important;
  border: 1px solid #8fb397;
  display: inline-flex;
  width: 100%;
  border-radius: 5px;
  padding: 10px 20px !important;
  align-items: center;
  justify-content: center;
  color: #4c594f !important;
  font-size: 14px;
  text-transform: capitalize;
}

.login-page {
  background: var(--app-primary);
  background: -moz-linear-gradient(139deg, var(--app-primary-2) 0%, var(--app-primary) 100%);
  background: -webkit-linear-gradient(139deg, var(--app-primary-2) 0%, var(--app-primary) 100%);
  background: linear-gradient(139deg, var(--app-primary-2) 0%, var(--app-primary) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F2AB04", endColorstr="#EE7A10", GradientType=1);
}


.dropzone .dropzone-container {
  text-align: center;
  cursor: pointer;
}

.dropzone .dropzone-container .dropzone-control {
  padding: 25px;
  border-radius: 5px;
  border: 1px solid #FFD0A5;
}
.dropzone .dropzone-container .dropzone-control.drop-zone--over {
  border: 2px dashed #ccc;
}

.dropzone .dropzone-container .dropzone-control img {
  max-width: 60px;
  margin: 0 auto 20px;
  width: 100%;
}

.dropzone .dropzone-container .dropzone-control p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 300;
}

.dropzone .dropzone-container input[type="file"] {
  display: none;
}

.dropzone .dropzone-container .dropzone-output {
  display: flex;
  padding: 15px;
  border-radius: 5px;
  align-items: center;
  justify-content: space-between;
}

.dropzone .dropzone-container .dropzone-output img {
  max-width: 40px;
  width: 100%;
  margin-right: 10px;
}

.dropzone .dropzone-container .dropzone-output>div {
  max-width: calc(100% - 80px);
  width: 100%;
  margin-right: 10px;
}

.dropzone .dropzone-container .dropzone-output>div>p {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
}

.dropzone .dropzone-container .dropzone-output>div>p>span {
  color: var(--app-primary);
}

.dropzone .dropzone-container .dropzone-output .remove-file {
  background: var(--app-primary);
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.dropzone .dropzone-container .dropzone-control.hide,
.dropzone .dropzone-container .dropzone-output.hide {
  display: none;
}
.dropzone .dropzone-container .dropzone-error {
  font-size: 12px;
  color: var(--app-danger);
  margin: 10px 0;
}
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active, 
.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active {
  background: var(--app-primary);
  background: linear-gradient(139deg, var(--app-primary-2) 0%, var(--app-primary) 100%);
  color: #fff;
}
[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active, 
[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active:hover, 
[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: #402702;
  color: #fff;
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255);
  transition: color 0.3s ease-in-out;
}
.navbar-light .navbar-nav .nav-link:hover, 
.navbar-light .navbar-nav .nav-link:focus {
  transition: color 0.3s ease-in-out;
  color: var(--app-primary)
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255);
}
.navbar-white {
  background-color: #131313;
  color: #1f2d3d;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: #dee2e6;
  border: #adb5bd solid 1px;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #adb5bd;
  box-shadow: none!important;
}
.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--app-primary)!important;
  background-color: var(--app-primary)!important;
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
}
.cursor-grabbable {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

/* (Optional) Apply a "closed-hand" cursor during drag operation. */
.cursor-grabbable:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.info-box .info-box-icon{
  background: var(--app-primary);
  background: linear-gradient(139deg, var(--app-primary-2) 0%, var(--app-primary) 100%);
  color: #fff;
}
.dataTables_empty{
  text-align: center;
}

select.form-control{
    position:relative;
    left : -10px;
}

form.form-control{
    input-apperence : hidden;

}