@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

body {
  font-family: Arial, sans-serif;
}

.dashboard {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 270px;
  background-color: #FFFFFF;
  color: #FFFFFF;
  padding: 0 0 15px;
  position: fixed;
  height: 100%;
  transition: width 0.3s;
  overflow: hidden;
}
.sidebar h2 {
  transition: opacity 0.3s;
  font-size: 1.5rem;
}
.sidebar nav {
  height: calc(100% - 70px);
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 6px 12px;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.sidebar nav::-webkit-scrollbar {
  width: 5px;
}
.sidebar nav::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}
.sidebar nav::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}
.sidebar nav::-webkit-scrollbar-thumb:hover {
  background: #777;
}
.sidebar nav ul {
  list-style: none;
  padding: 5px 15px;
  background: #F9F9F9;
  margin: 5px 0 10px;
}
.sidebar nav ul li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #53545C;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  padding: 8px 10px;
}
.sidebar nav ul li a:hover {
  text-decoration: underline;
}
.sidebar .title {
  background: #D6E2FF;
  padding: 8px 20px;
  border-radius: 4px;
}
.sidebar .title span {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #53545C;
}

.sidebar.collapsed {
  width: 70px;
}
.sidebar.collapsed h2 {
  opacity: 0;
}

.sidebar-header {
  height: 70px;
  background-color: #595FDE;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

.toggle-btn {
  background-color: transparent;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
}

/* Main Content */
.main-content {
  margin-left: 270px;
  width: calc(100% - 270px);
  display: flex;
  flex-direction: column;
  transition: margin-left 0.3s, width 0.3s;
}

.sidebar.collapsed ~ .main-content {
  margin-left: 70px;
  width: calc(100% - 70px);
}

/* Header */
.header {
  background-color: #595FDE;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2509803922);
  color: #FFFFFF;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: calc(100% - 250px);
  top: 0;
  z-index: 1000;
  height: 70px;
  transition: width 0.3s;
}
.header a.login {
  background: #0D6EFD;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.header h2 {
  font-family: Mplus 1p;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #FFFFFF;
}
.header .dropdown button.dropdown-button {
  padding: 0;
  color: #FFFFFF;
}
.header .dropdown button.open {
  background: transparent;
}
.header .dropdown button:hover {
  background-color: transparent;
}
.header .dropdown .dropdown-menu {
  background-color: #fff;
  border: 1px solid gray;
  min-width: 90px;
}
.header .dropdown .dropdown-menu a {
  padding: 0px 10px;
  display: block;
  border: none;
}

.sidebar.collapsed ~ .main-content .header {
  width: calc(100% - 70px);
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown button {
  color: #53545C;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  background: transparent;
  border: none;
  display: block;
  width: 100%;
  padding: 8px 10px;
}
.dropdown button.open {
  background: #E7EEFF;
}
.dropdown button.active {
  background: #E7EEFF;
}
.dropdown button:hover {
  background-color: #E7EEFF;
}
.dropdown button img.arrow {
  transform: rotate(-90deg);
}
.dropdown button img.arrow.rotate {
  transform: rotate(0deg);
}
.dropdown .dropdown-menu {
  background: transparent;
  box-shadow: none;
  border: none;
}
.dropdown .dropdown-menu a {
  padding: 6px 25px;
  border-left: 1px solid #E0E0E0;
  margin: 5px 0;
}
.dropdown .dropdown-menu .dropdown-item {
  padding: 0;
}
.dropdown .dropdown-menu .dropdown-item:focus, .dropdown .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: #FFFFFF;
}
.dropdown .submenu-button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #53545C;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  padding: 6px 25px;
  border-left: 1px solid #E0E0E0;
}
.dropdown .submenu-button1,
.dropdown .submenu-button2,
.dropdown .submenu-button3,
.dropdown .submenu-button4,
.dropdown .submenu-button5 {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #53545C;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  padding: 6px 25px;
  border-left: 1px solid #E0E0E0;
}
.dropdown .submenu {
  display: none;
  min-width: 200px;
  padding: 0 15px;
}
.dropdown .submenu a {
  padding: 5px 15px;
  border: none;
}
.dropdown .submenu1,
.dropdown .submenu2,
.dropdown .submenu3,
.dropdown .submenu4,
.dropdown .submenu5 {
  display: none;
  min-width: 200px;
  padding: 0 25px;
}
.dropdown .submenu1 a,
.dropdown .submenu2 a,
.dropdown .submenu3 a,
.dropdown .submenu4 a,
.dropdown .submenu5 a {
  padding: 5px 15px;
  border: none;
}

.login-sec .left-img {
  font-family: "M PLUS 1p", serif;
  position: relative;
}
.login-sec .left-img img {
  width: 100%;
  height: auto;
}
.login-sec .left-img .l-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}
.login-sec .left-img .l-content h2 {
  font-family: Mplus 1p;
  font-size: 100px;
  font-weight: 400;
  line-height: 130px;
  letter-spacing: -0.08em;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #FFFFFF;
}
.login-sec .left-img .l-content span {
  font-family: Mplus 1p;
  font-size: 38.96px;
  font-weight: 400;
  line-height: 50.64px;
  letter-spacing: -0.01em;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #909090;
}
.login-sec .right-form {
  position: relative;
  width: 100%;
  height: 100%;
}
.login-sec .right-form .login-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
.login-sec .right-form .login-form .gram-data p {
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #FFFFFF;
}
.login-sec .right-form .login-form .gram-data p span {
  font-weight: 600;
}
.login-sec .right-form .login-form .form-group {
  margin-bottom: 20px;
}
.login-sec .right-form .login-form .form-group:last-child {
  margin-bottom: 0;
}
.login-sec .right-form .login-form .form-group label {
  color: #6C757D;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.login-sec .right-form .login-form .form-group .form-control {
  font-family: Inter;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #6C757D;
}
.login-sec .right-form .login-form .form-group .form-control::-moz-placeholder {
  color: #C6C6C6;
}
.login-sec .right-form .login-form .form-group .form-control::placeholder {
  color: #C6C6C6;
}
.login-sec .right-form .login-form .form-group button {
  background: #0D6EFD;
  border: 1px solid #0D6EFD;
  color: #FFFFFF;
  width: 100%;
  padding: 8px 16px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  border-radius: 5px;
}

/* Content Area */
.content {
  margin-top: 70px;
  padding: 20px;
}
.content .priority {
  background: #F9F9F9;
  border-radius: 6px;
  padding: 20px;
  border: 1px solid #E5E5E5;
  box-shadow: 0px 4px 8.5px 0px rgba(0, 0, 0, 0.0705882353);
}
.content .priority .row > * {
  margin: 0;
}
.content .priority span {
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #3067F2;
}
.content .priority ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.content .priority ul li {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.91px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #909090;
  border-radius: 2px;
  margin-top: 10px;
}
.content .priority .month span {
  background: #FFE4C6;
  border: 1px solid #FFE4C6;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #444444;
  display: block;
  padding: 10px 30px;
  width: 50%;
}
.content .priority .grade span {
  background: #C5FFC1;
  border: 1px solid #C5FFC1;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #444444;
  display: block;
  padding: 10px 30px;
  width: 50%;
}
.content .priority a {
  font-size: 18px;
  font-weight: 500;
  line-height: 21.78px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #084298;
}
.content .divivder-main {
  border: 1px solid #D6D6D6;
  margin-top: 20px;
}
.content .row:first-child > * {
  margin: 0;
}
.content .row > * {
  margin: 20px 0 0;
}
.content .uddishte {
  background: #F9F9F9;
  border-radius: 6px;
  border: 1px solid #D6D6D6;
  padding: 10px;
}
.content .uddishte .divider {
  margin: 20px 0;
  border: 1px solid #E7E7E7;
}
.content .uddishte .patrak span {
  border-radius: 2px;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  background: #E7E7E7;
  color: #747474;
}
.content .uddishte .namuna span {
  border-radius: 2px;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  background: #595FDE;
  color: #FFFFFF;
}
.content .uddishte p {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #747474;
}
.content .uddishte:hover {
  background: #F0F4FF;
  border: 1px solid #AFC6FF;
}
.content .uddishte:hover .patrak span {
  color: #595FDE;
}
.content .uddishte:hover p {
  color: #595FDE;
}
.content a.excel-export {
  background: #7df675;
  display: inline-flex;
  align-items: center;
  border: 1px solid #7df675;
  padding: 5px 10px;
  font-size: 14px;
  color: green;
  border-radius: 5px;
}
.content a.excel-export img {
  width: 20px;
  height: auto;
  margin-right: 5px;
}

.topbar {
  background: #C5FFC1;
  padding: 8px 20px;
}
.topbar span {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #444444;
}
.topbar a.back img {
  transform: rotate(90deg);
}

.orders {
  background: #F8D7DA;
  padding: 8px 20px;
}
.orders span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #842029;
}

.breadcrumb-area {
  margin-bottom: 10px;
}
.breadcrumb-area li {
  font-size: 1rem;
  color: #6C757D;
}
.breadcrumb-area li.breadcrumb-item + .breadcrumb-item::before {
  color: #6C757D;
}
.breadcrumb-area li a {
  font-size: 1rem;
  color: #0D6EFD;
}

.navigation_menu {
  font-size: 14px;
  margin-top: 5px;
}
.navigation_menu ul {
  list-style-type: none;
  padding-right: 0;
  margin: 0;
}
.navigation_menu li {
  position: relative;
}
.navigation_menu li:before {
  display: inline-block;
  content: "";
  position: absolute;
  left: -30px;
  height: 100%;
  width: 10px;
}
.navigation_menu li:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -42px;
  width: 30px;
  height: 30px;
  line-height: 26px;
  border: 1px solid #DDD;
  border-radius: 50%;
  background-color: #FFF;
  text-align: center;
  margin: 0 auto 10px auto;
}
.navigation_menu li:not(:last-child) {
  padding-bottom: 25px;
}
.navigation_menu li.tab_inactive:before {
  border-left: 3px solid green;
  margin-left: 3px;
}
.navigation_menu li.tab_inactive:after {
  content: "✓";
  font-size: 16px;
  color: #FFF;
  text-align: center;
  border: 1px solid green;
  background-color: green;
}
.navigation_menu li.tab_active:after {
  border: 1px solid green;
}

.navigation_tabs {
  counter-reset: step;
  position: relative;
  padding-left: 45px;
  list-style: none;
}
.navigation_tabs::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 10px;
  height: 100%;
  border-left: 2px solid #CCC;
}
.navigation_tabs li a {
  display: block;
  padding-top: 8px;
  text-decoration: none;
  color: #000;
}
.navigation_tabs li a:hover {
  font-weight: bold;
}
.navigation_tabs li.tab_inactive a {
  color: green;
}
.navigation_tabs li.tab_disabled a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.navigation_tabs li.tab_active a:hover {
  font-weight: bold;
}

.namuna-form {
  width: 100%;
  margin: 30px auto 0;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #AAAAAA;
  box-shadow: 0px 4px 8.5px 0px rgba(0, 0, 0, 0.0705882353);
}
.namuna-form .addFormDiv,
.namuna-form .viewDataDiv .namuna-form {
  border: 1px solid #dcdcdc;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  border-radius: 10px;
}
.namuna-form div#listingData_wrapper {
  border: 1px solid #c1c1c1;
  border-radius: 10px;
  padding: 20px 25px;
}
.namuna-form div#listingData_wrapper button.dt-button {
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  font-size: 15px;
  line-height: 20px;
}
.namuna-form div#listingData_wrapper button.dt-button.buttons-csv {
  background: #959595;
}
.namuna-form div#listingData_wrapper button.dt-button.buttons-excel {
  background: #2aaa2a;
}
.namuna-form div#listingData_wrapper button.dt-button.buttons-pdf {
  background: #ff4242;
}
.namuna-form .hidden {
  display: none;
}
.namuna-form .note p {
  font-size: 16px;
  color: red;
}
.namuna-form p {
  font-size: 17px;
  font-weight: 400;
  line-height: 21.78px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #444444;
  margin-bottom: 10px;
}
.namuna-form p span {
  color: #E32127;
}
.namuna-form.patrak {
  border: none;
  box-shadow: none;
  padding: 0;
}
.namuna-form .sec {
  background: #F5F5F5;
  border-radius: 8px;
  border: 1px solid #DDDDDD;
  padding: 20px;
  margin-bottom: 20px;
}
.namuna-form .sec p {
  margin: 0;
}
.namuna-form .sec .h-40 {
  height: 40px;
  margin-top: 10px;
}
.namuna-form label {
  font-size: 17px;
  font-weight: 400;
  line-height: 21.78px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #444444;
  margin-bottom: 10px;
}
.namuna-form .form-group label {
  font-size: 17px;
  font-weight: 400;
  line-height: 21.78px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #444444;
  margin-bottom: 10px;
}
.namuna-form .form-group .select2-container .select2-selection--single,
.namuna-form .form-group .form-select {
  border: 1px solid gray;
  padding: 6px 15px;
  height: 40px;
}
.namuna-form .form-group .form-control {
  position: relative;
  border: 1px solid gray;
  padding: 6px 15px;
  height: 40px;
}
.namuna-form .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0px;
}
.namuna-form .form-group input[type=date]::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: url("../images/calender.svg");
  background-size: cover;
  margin: auto;
}
.namuna-form .form-group input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
.namuna-form .btn-area button {
  background: #0D6EFD;
  border: 1px solid #0D6EFD;
  color: #FFFFFF;
  padding: 8px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.namuna-form .btn-area button.close {
  background: transparent;
  border: 1px solid #DC3545;
  color: #DC3545;
}
.namuna-form .sticky-label {
  background: #888888;
  border-radius: 0 20px 20px 0;
  width: 20%;
}
.namuna-form .sticky-label img {
  width: 25px;
  filter: invert(1);
}
.namuna-form .add-btn {
  background: #084298;
  color: #fff;
  border-radius: 5px;
  display: block;
  text-align: center;
  height: 40px;
  font-size: 25px;
  line-height: 40px;
}
.namuna-form table td button {
  border: none;
  background: transparent;
}
.namuna-form table td button img {
  width: 25px;
  height: auto;
}
.namuna-form table td a img {
  width: 25px;
  height: auto;
}

.modal .modal-dialog {
  max-width: 800px;
}
.modal .modal-dialog .modal-body {
  padding: 25px 25px 10px;
}
.modal .modal-dialog .modal-body p {
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}
.modal .modal-dialog .modal-footer {
  border-top: none;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */