@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap");
/*--------------------------------------------------------------------
Global
---------------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #495057;
  background: #fff;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px grey;
          box-shadow: inset 0 0 5px grey;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: #1f4068;
  border-radius: 8px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

small {
  font-size: 12px;
}

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

i {
  font-size: 14px;
}

i,
svg {
  display: inline-block;
  pointer-events: none;
}

img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

iframe {
  width: 100%;
}

figure {
  position: relative;
}

figure img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:focus,
.navbar-toggler:focus,
.form-control:focus,
.form-select:focus,
.accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-select-sm,
.form-control-sm {
  font-size: 12px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  margin: 0;
}

.pagination .page-link {
  color: #005792;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagination .page-link:hover,
.pagination .page-link.active {
  color: #fff;
  background: #005792;
}

.text-primary {
  background: #005792;
}

.text-dark-blue {
  color: #1f4068;
}

.btn-primary {
  background: -webkit-gradient(linear, left bottom, right top, from(#336699), to(#0099cc));
  background: linear-gradient(to top right, #336699 0%, #0099cc 100%);
}

.btn-primary:hover {
  background: -webkit-gradient(linear, right top, left bottom, from(#336699), to(#0099cc));
  background: linear-gradient(to bottom left, #336699 0%, #0099cc 100%);
}

.dropdown-toggle::after,
.dropstart .dropdown-toggle::before {
  display: none;
}

.dropdown-menu {
  font-size: 13px;
  top: 100% !important;
  animation: DropDownSlide .3s ease both;
  -webkit-animation: DropDownSlide .3s ease both;
}

.dropdown-item.active,
.dropdown-item:active {
  background: #005792;
}

@-webkit-keyframes DropDownSlide {
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}

@keyframes DropDownSlide {
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}

/*--------------------------------------------------------------------
Preloader
---------------------------------------------------------------------*/
#preloader {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.loader-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loader {
  text-align: center;
  padding: 0;
  margin: 80px auto;
  list-style-type: none;
}

.loader li {
  width: 20px;
  height: 20px;
  margin: 10px 0;
  display: inline-block;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.loader li:nth-child(1) {
  background-color: #005792;
  -webkit-animation: right-1 1s infinite alternate;
          animation: right-1 1s infinite alternate;
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.loader li:nth-child(2) {
  background-color: #dd2f6e;
  -webkit-animation: right-2 1s infinite alternate;
          animation: right-2 1s infinite alternate;
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}

.loader li:nth-child(3) {
  background-color: #1f4068;
  -webkit-animation: right-3 1s infinite alternate;
          animation: right-3 1s infinite alternate;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

@-webkit-keyframes right-1 {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

@keyframes right-1 {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

@-webkit-keyframes right-2 {
  0% {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
  100% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}

@keyframes right-2 {
  0% {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
  100% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}

@-webkit-keyframes right-3 {
  0% {
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
  100% {
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
}

@keyframes right-3 {
  0% {
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
  100% {
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
}

@-webkit-keyframes right-4 {
  0% {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  100% {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
}

@keyframes right-4 {
  0% {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  100% {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
}

@-webkit-keyframes right-5 {
  0% {
    -webkit-transform: translateY(-85px);
            transform: translateY(-85px);
  }
  100% {
    -webkit-transform: translateY(85px);
            transform: translateY(85px);
  }
}

@keyframes right-5 {
  0% {
    -webkit-transform: translateY(-85px);
            transform: translateY(-85px);
  }
  100% {
    -webkit-transform: translateY(85px);
            transform: translateY(85px);
  }
}

/*--------------------------------------------------------------------
Sidebar
---------------------------------------------------------------------*/
aside {
  padding: 16px 0;
  width: 60px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #005792;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

aside .logo-wrapper {
  margin-bottom: 30px;
  padding: 0 8px;
  max-width: 200px;
}

aside .logo-small {
  display: block;
  margin: auto;
}

aside ul li {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

aside ul a {
  font-size: 14px;
  color: #fff !important;
  padding: 4px 0;
  margin-bottom: 8px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px 0 0 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

aside ul a i {
  font-size: 20px;
  text-align: center;
  display: block;
  min-width: 60px;
}

aside ul a span {
  text-transform: capitalize;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

aside ul .menu-link.active {
  background: rgba(0, 0, 0, 0.3);
}

aside ul .menu-link.active span {
  transform: translateX(0) !important;
  -webkit-transform: translateX(0) !important;
  -moz-transform: translateX(0) !important;
  -ms-transform: translateX(0) !important;
  -o-transform: translateX(0) !important;
}

aside ul a:hover span {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

aside ul .shape1,
aside ul .shape2 {
  position: absolute;
  height: 20px;
  width: 100%;
  background: #1f4068;
  display: none;
}

aside ul .shape1 {
  bottom: 100%;
}

aside ul .shape2 {
  top: 100%;
}

aside ul .shape1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-bottom-right-radius: 10px;
  background: #005792;
}

aside ul .shape2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-top-right-radius: 10px;
  background: #005792;
}

aside ul .activeLi .shape1,
aside ul .activeLi .shape2 {
  display: block;
}

aside .submenu {
  padding-left: 30px;
}

aside .submenu li {
  display: none;
}

aside .submenu .active {
  background: rgba(0, 0, 0, 0.3);
}

aside .metismenu .has-arrow::after {
  display: none;
}

aside:hover {
  width: 260px;
}

aside:hover .metismenu .has-arrow::after {
  display: block;
}

aside:hover .submenu li {
  display: block;
}

aside::-webkit-scrollbar {
  width: 8px;
}

/*--------------------------------------------------------------------
Wrapper
---------------------------------------------------------------------*/
main {
  margin-left: 60px;
  position: relative;
}

/*--------------------------------------------------------------------
Header
---------------------------------------------------------------------*/
header {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 10px;
}

header .list-inline-item {
  vertical-align: middle;
}

header .bx-fullscreen,
header .bx-upload {
  font-size: 22px;
}

header .list-inline-item:not(:last-child) {
  margin-right: 16px;
}

.header-user button {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-user img {
  width: 36px;
  border: 1px solid #d5d5d5;
}

.header-user h3 {
  font-size: 14px;
  font-weight: 500;
  color: #495057;
}

.header-user span {
  margin-top: 4px;
  color: #005792;
}

.header-user .dropdown-item i {
  margin-right: 8px;
  vertical-align: middle;
}

/*--------------------------------------------------------------------
Footer
---------------------------------------------------------------------*/
footer {
  position: absolute;
  top: 100%;
  width: 100%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 10px;
}

/*--------------------------------------------------------------------
Main Section
---------------------------------------------------------------------*/
.main-section {
  padding: 16px 10px;
  min-height: 100vh;
}

.ui-multiselect {
  color: #495057;
  padding: 3px .5rem;
  background: #fff;
  display: block;
  width: 100% !important;
}

.ui-multiselect-checkboxes input {
  margin-right: 4px;
}

.modal-content {
  border: none;
}

.modal-header,
.modal-footer {
  background: -webkit-gradient(linear, left bottom, right top, from(#336699), to(#0099cc));
  background: linear-gradient(to top right, #336699 0%, #0099cc 100%);
}

.modal-title {
  color: #fff;
}

.modal-footer .btn-primary {
  background: #023a8f;
}

.modal-dialog-scrollable .modal-body {
  max-height: 400px;
}

.form-check-inline {
  margin-right: 8px;
}

.form-check-inline .form-check-input {
  margin-right: 4px;
}

.common-title {
  font-size: 16px;
  font-weight: 500;
  color: #dc3545;
  margin-bottom: 16px;
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.c_table {
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
}

.c_table .form-select-sm,
.c_table .form-control-sm {
  font-size: 10px;
}

.c_table thead {
  color: #fff;
  text-transform: capitalize;
  background: #005792;
}

.c_table thead th {
  border-bottom: 0;
  text-shadow: 0 0 2px #000;
}

.c_table thead th i {
  color: #fff;
}

.c_table tbody td {
  padding: 2px 4px;
  vertical-align: middle;
}

.c_table i {
  font-size: 13px;
  color: #005792;
  vertical-align: middle;
}

.c_table p {
  margin: 0;
}

.c_table .modal-content {
  text-align: left;
  font-size: 12px;
}

.c_table .modal-content .form-control-sm,
.c_table .modal-content .form-select-sm {
  font-size: 12px;
}

.input-group-text {
  padding: .25rem .5rem;
}

.invalid-feedback {
  font-size: 12px;
}

.border-primary {
  border-color: #005792;
}

.w50 {
  width: 50px;
}

.w80 {
  width: 80px;
}

.w100 {
  width: 100px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

label {
  font-weight: 500;
}

/*--------------------------------------------------------------------
Signin Page
---------------------------------------------------------------------*/
.sign-in-page {
  height: 100vh !important;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url(../images/login1.jpg) no-repeat center/cover;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/login1.jpg) no-repeat center/cover;
}

.sign-in-from {
  min-height: 100vh;
  padding: 100px 50px 50px;
  position: relative;
  z-index: 3;
  background: #fff;
}

#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.c_table .form-check {
  margin-bottom: 0;
}

.form-control::-webkit-input-placeholder {
  font-size: 12px;
}

.form-control:-ms-input-placeholder {
  font-size: 12px;
}

.form-control::-ms-input-placeholder {
  font-size: 12px;
}

.form-control::placeholder {
  font-size: 12px;
}

.form-switch .form-check-input {
  margin-right: 4px;
}

.form-check .form-check-input {
  float: unset;
  margin-top: 0;
  vertical-align: middle;
}
/*# sourceMappingURL=style.css.map */

/* Shimmer Effect */
.comment {
    height: 10px;
    margin: 2px 8px;
    border-radius: 5px;
  }

  @keyframes fullView {
    100% {
      width: 100%;
    }
  }

  .animate {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
    background-size: 1000px 100%;
  }

  @keyframes shimmer {
    0% {
      background-position: -1000px 0;
    }

    100% {
      background-position: 1000px 0;
    }
  }


  /* Table scrollbar */
.p_table {
    max-height: 100vh;
    overflow-y: auto;
    margin-bottom: 10px;
  }

  .p_table .table {
    margin-bottom: 0;
    /* position: relative; */
  }

  .p_table .table thead th {
      position: sticky;
      top: -1px;
      z-index: 1;
      background-color: #005792;
  }

  .p_table .table thead tr:nth-child(2) th {
      position: sticky;
      top: 23px;
      z-index: 1;
      background-color: #fff;
  }


  .c_table thead tr:first-child th {
    background-image: url("../images/sort.png");
    background-repeat: no-repeat;
    background-position: center right;
    padding: 4px 18px 4px 4px;
    cursor: pointer;
    font-size: 11px;
  }
  .custom-switch {
	padding-left: 2.25rem;
}

.custom-control {
	position: relative;
	display: block;
	min-height: 1.5rem;
	padding-left: 1.5rem;
}

.custom-control-input {
	position: absolute;
	left: 0;
	z-index: -1;
	width: 1rem;
	height: 1.25rem;
	opacity: 0;
}

input[type=checkbox],
input[type=radio] {
	box-sizing: border-box;
	padding: 0;
}

.custom-control-label {
	position: relative;
	margin-bottom: 0;
	vertical-align: top;
  padding-top: 3px;
}

.custom-control-input:checked~.custom-control-label::before {
  border-color: #005792;
  background-color: #005792;
  color: #fff;
}

.custom-switch .custom-control-label::before {
	left: -2.25rem;
	width: 1.75rem;
	pointer-events: all;
	border-radius: .5rem
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.custom-control-label::before {
	position: absolute;
	top: .25rem;
	left: -1.5rem;
	display: block;
	width: 1rem;
	height: 1rem;
	pointer-events: none;
	content: "";
	background-color: #fff;
	border: #adb5bd solid 1px
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
	background-color: #fff;
	-webkit-transform: translateX(.75rem);
	transform: translateX(.75rem)
}

.custom-switch .custom-control-label::after {
	top: calc(.25rem + 2px);
	left: calc(-2.25rem + 2px);
	width: calc(1rem - 4px);
	height: calc(1rem - 4px);
	background-color: #adb5bd;
	border-radius: .5rem;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out;
	transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out
}

.custom-control-label::after {
	position: absolute;
	top: .25rem;
	left: -1.5rem;
	display: block;
	width: 1rem;
	height: 1rem;
	content: "";
	background: no-repeat 50%/50% 50%
}



/ Edit Profile /
.iq-edit-profile .nav-link {
  padding: 20px 15px;
  border-radius: 0;
  color: #777d74;
  text-align: center;
  font-size: 16px;
  border-left: 1px solid #f2edff;
}
.iq-edit-profile.nav-pills .nav-link.active,
.iq-edit-profile.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #005792;
}
ul.iq-edit-profile li:first-child a {
  border-radius: 15px 0 0 15px;
  border-left: none;
}
ul.iq-edit-profile li:last-child a {
  border-radius: 0 15px 15px 0;
}
.iq-edit-profile a {
  border: 1px solid #d5d5d5 !important;
}

/*---------------------------------------------------------------------
Profile Edit
-----------------------------------------------------------------------*/
.profile-pic {
  max-width: 100%;
  display: block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.profile-img-edit {
  position: relative;
  display: inline-block;
  height: 150px;
  width: 150px;
}
.file-upload {
  display: none;
}
.p-image {
  position: absolute;
  top: auto;
  right: 8px;
  bottom: 10px;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  background: #005792;
  color: #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  line-height: 28px;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
}
.upload-button {
  font-size: 1.5em;
}

.upload-button i {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.upload-button input {
  opacity: 0;
}


.profile_nav_link {
    padding: 15px;
}




/*--------------------------------------------------------------------
Loading
---------------------------------------------------------------------*/
#loading {
    background: rgba(255, 255, 255, 0.7);
    /* background: #fff; */
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  #loading-center {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #005792;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }

  #loading-center:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #dd2f6e;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
  }

  #loading-center:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1f4068;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
  }

  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }



