/**
* Template Name: justrightreader
* Author: https://justrightreader.com
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #DCEFF2;
  color: #212529;
}

a {
  color: #528CB4;
  text-decoration: none;
}

a:hover {
  color: #528CB4;
  /* text-decoration: underline; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

p:last-child {
  margin: 0;
}

.btn-theme {
  color: #fff;
  background-color: #528CB4;
  border: 1px solid #528CB4 !important;
  transition: 0.2s;
}
.btn-theme:hover {
  color: #528CB4 !important;
  background: transparent;
}

.btn-theme-logIn {
  color: #fff;
  background-color: #5B503E;
  border: 1px solid #5B503E !important;
  transition: 0.2s;
}
.btn-theme-logIn:hover {
  color: #5B503E !important;
  background: transparent;
}

.form-control {
  color: #0b0b0b;
}
.form-control:focus, .form-select:focus {
  color: #0b0b0b;
  background-color: #fff;
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}
.form-check-input:checked {
  background-color: #528CB4;
  border-color: #528CB4;
}
.bg-theme {
  background-color: #528CB4;
}

.bg-theme-logIn {
  background-color: #ee3123;
}

.theme-text-color {
  color: #528CB4;
}
.border-theme-color {
  border-color: #528CB4 !important;
}

.border-theme-color-logIn {
  border-color: #ee3123 !important;
}

.auth-sectoin {
  height: calc(100vh - 24px);
}
.product-badge.status-pending {
  background: #ffcdd2;
  color: #c63737;
}
.product-badge {
  border-radius: 2px;
  padding: 0.25em 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .3px;
}
.product-badge.status-delivered {
  background: #c8e6c9;
  color: #256029;
  text-align: center;
}
.cursor-pointer {
  cursor: pointer
}
.text-decoration {
  text-decoration: none !important;
}

.page-showing select.form-select {
  padding: 5px 25px 5px 8px;
  background-position: right 5px center;
}

/*--------------------------------------------------------------
# Page Main
--------------------------------------------------------------*/
#page-main {
  margin-top: 60px;
  padding: 30px;
  transition: all 0.3s;
  min-height: calc(100vh - 105px);
}

@media (max-width: 1199px) {
  #page-main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/

.section-title{
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #528CB4;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #528CB4;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #528CB4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Card */
.card {
  margin-bottom: 30px;
  border-radius: 0px;
  box-shadow: none;
  border: none;
}
.card-header {
  border-radius: 0 !important;
  border: 1px solid #528CB4;
  border-bottom: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo-inner, .line-height-1 {
  line-height: 1;
}
.logo-inner:hover {
  text-decoration: none;
}

@media (min-width: 1200px) {
  .logo-inner {
    width: 230px;
    padding-left: 0;
  }
}
.logo-inner img {
  max-height: 28px;
  margin-right: 10px;
  width: auto;
}

.logo-inner span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 4px 16px rgba(28, 69, 110, 0.35);
  /* background: linear-gradient(135deg, #1C456E 0%, #528CB4 100%); */
  background:#ee3123;
  border-bottom: 3px solid #AFDAE1;
  padding: 0 20px;
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #fff;
}

.header a, .header a:hover, .header span, .header i {
  color: #fff !important;
}

.header .profile-img .bi-person-circle {
  font-size: 20px;
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 250px;
  z-index: 996;
  transition: all 0.3s;
  padding: 10px 5px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -250px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {
  #page-main,
  #footer {
    margin-left: 250px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #page-main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -250px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #528CB4;
  transition: 0.3;
  background: #f6f9ff;
  padding: 10px 15px;
  border-radius: 5px;
}

.sidebar-nav .nav-link i {
  margin-right: 10px;
  color: #528CB4;
}

.sidebar-nav .nav-link {
  color: #528CB4;
  background: #fff;
}
.sidebar-nav .nav-link:hover {
  text-decoration: none;
}

.sidebar-nav .nav-link i {
  color: #528CB4;
}

.sidebar-nav .nav-link:hover, .sidebar-nav .nav-link.active {
  color: #528CB4;
  background: #DCEFF2;
}

.sidebar-nav .nav-link:hover i, .sidebar-nav .nav-link.active i {
  color: #528CB4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 12px 0px;
  font-size: 13px;
  transition: all 0.3s ease 0s;
  border-top: none;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(1, 41, 112, 0.1) 0px 0px 5px;
}

.footer .copyright {
  text-align: center;
}


/*--------------------------------------------------------------
# Table Fix Header
--------------------------------------------------------------*/
.list-table-height {
  max-height: 305px;
}
.table-head-fixed {
  border: 1px solid #ddd;
  border-top: 0;
}
.table-head-fixed thead tr th:not(:last-child),
.table-head-fixed tbody tr td:not(:last-child) {
  border-left: 1px solid #ddd;
}
.table-head-fixed thead tr:nth-child(1) th {
  background-color: #fff;
  border-bottom: 0;
  box-shadow: inset 0 1px 0 #dee2e6, inset 0 -1px 0 #dee2e6;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}
.table thead tr th, .table tbody tr td {
  padding: 8px 16px;
}


/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination .page-item .page-link {
  color: #528CB4;
}
.pagination .page-item .page-link:hover {
  text-decoration: none;
}
.pagination .page-item.disabled>.page-link, 
.pagination .page-item .page-link.disabled {
  color: #6c757d;
}
.pagination .page-item.active>.page-link, 
.pagination .page-item .page-link.active {
  background-color: #528CB4;
  color: #fff;
  border-color: #528CB4;
}
.pagination .page-item .page-link:focus {
  background-color: transparent;
  box-shadow: none;
}
.pagination .page-item:not(:first-child) .page-link {
  margin-left: 0;
}

.p-badge{
  background: #528CB4 !important;
}
.p-datatable .p-datatable-tbody > tr > td{
  padding:0.3rem 0.3rem !important;

}
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  margin-top: -1rem;
}

.grid>.col, .grid>[class*=col] {
  box-sizing: border-box;
}
.shadow-1 {
  box-shadow: 0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important;
}

.card:last-child {
  margin-bottom: 0;
}

.align-items-center {
  align-items: center!important;
}

.flex {
  display: flex!important;
}

.border-round {
  border-radius: 4px!important;
}

.p-2 {
  padding: 0.5rem!important;
}
.justify-content-center {
  justify-content: center!important;
}
.text-xl {
  font-size: 1.25rem!important;
}
.font-semibold {
  font-weight: 600!important;
}
.p-1 {
  padding: 1rem!important;
}
.p-15 {
  padding: 1.25rem!important;
}
/* .p-inputtext {
  padding: 0.125rem 0.5rem !important;
  font-size: 0.8rem !important;
} */
.p-b-n{
  padding-bottom: 0 !important;
}
.text-2xl {
  font-size: 1.5rem!important;
}
.text-color {
  color: #495057!important;
}
.border-right-1 {
  border-right-width: 1px!important;
  border-right-style: solid;
}
.ml-2 {
  margin-left: 0.5rem!important;
}
.h-full {
  height: 100%!important;
}
.grid>.col, .grid>[class*=col] {
  box-sizing: border-box;
}
@media screen and (min-width: 992px){ .lg\:col-6 {
  flex: 0 0 auto;
  padding: 1rem;
  width: 50%;
}}
.card {
  background-color: #ffffff;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 1px -1px #0003, 0 1px 1px #00000024, 0 1px 3px #0000001f;
  border-radius: 4px;
}
.justify-content-between {
  justify-content: space-between!important;
}
.py-3 {
  padding-top: 1rem!important;
  padding-bottom: 1rem!important;
}
.text-color-secondary {
  color: rgba(0, 0, 0, 0.6)!important;
}
.border-round-xs {
  border-radius: 0.125rem!important;
}
.ml-auto {
  margin-left: auto!important;
}
.text-sm {
  font-size: .875rem!important;
}
.bg-indigo-500 {
  background-color: var(--indigo-500)!important;
}
.font-medium {
  font-weight: 500!important;
}
.text-sm {
  font-size: .875rem!important;
}
.bg-orange-500 {
  background-color: var(--orange-500)!important;
}
.list-none {
  list-style: none!important;
}
.border-bottom-1 {
  border-bottom-width: 1px!important;
  border-bottom-style: solid;
}
.surface-border {
  border-color: #dee2e6!important;
}
.font-bold {
  font-weight: 700!important;
}
.flex {
  display: flex!important;
}
.gap-3 {
  gap: 1rem!important;
}
.widget-support-request {
  position: relative;
}
.grid-nogutter {
  margin-right: 0;
  margin-left: 0;
  margin-top: 0;
}
.widget-support-request label {
  display: block;
  margin-bottom: 8px;
}
.widget-support-request .resolution-button-bar {
  text-align: left;
}
.widget-support-request .p-inputtext {
  margin-bottom: 16px;
  width: 100%;
  color: #9199a9;
}
.p-datatable .p-datatable-thead > tr > th {
padding: 0.2rem !important;
}
.p-column-filter-row .p-column-filter-menu-button, .p-column-filter-row .p-column-filter-clear-button{
  margin-left:1px !important;
}
.no-wrap {
  width: auto !important;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table-container{
  overflow-x:auto;
}
input.p-inputtext.p-component.ng-star-inserted{
  padding: 0px !important;
}
.card{
  padding: 0px !important;
}
.p-button.p-button-icon-only{
  padding: 0px !important;
  width: 1.357rem !important;
}
.p-button.p-button-icon-only.p-button-rounded{
  height: 1.357rem !important;
}