@charset "UTF-8";
@import url("../css/bootstrap.min.css");
@import url("../css/all.min.css");
* {
  box-sizing: border-box;
  list-style: none;
}

body {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-style: normal; 
  font-weight: 600;
  line-height: 1.3;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 800;
}

h1, .h1 {
  font-size: 54px;
}

h2, .h2 {
  font-size: 42px;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}

a {
  color: #9F3422;
  transition: all 0.3s ease 0s;
}
a:hover {
  text-decoration: none;
}
.dashboard {
  padding-left: 280px;
  background: #F8F7FD;
  padding-top: 75px;
  min-height: 100vh;
}
.dash-header {
  box-shadow: 3px 3px 14px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: all 0.3s ease 0s;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
.d-header-row {
    min-height: 85px;
    position: relative;
    justify-content: flex-end;
    width: 100%;
    display: flex;
    align-items: center;
}
.d-header-l {
  width: calc(100% - 400px);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.d-header-r {
  position: absolute;
  right: 0;
  top: 5px;
  padding: 20px;
  display: flex;
  align-items: center;
}
.left-nav {
  background: #332A55;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  transition: all 0.3s ease 0s;
  z-index: 99;
}
.l-logo {
    text-align: center;
    padding: 20px;
    background: #211a3c;
}
.l-logo img {
    max-width: 120px;
}
.l-nav-bar > ul {
  margin: 0;
  padding: 0;
}
.l-nav-bar > ul > li {
    display: block;
    padding: 1px 0;
    border-bottom: 1px solid #483D6F;
}
.l-nav-bar > ul > li > a {
  display: block;
  position: relative;
  padding: 14px 20px;
  font-size: 16px;
  color: #8E84B2;
  font-weight: 600;
  text-decoration: none;
}
.l-nav-bar > ul > li > a svg {
  vertical-align: middle;
  margin-right: 7px;
  margin-top: -4px;
}
.l-nav-bar > ul > li > a:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 1px solid #8E84B2;
    border-bottom: 1px solid #8E84B2;
    transform: rotate(45deg);
    top: 20px;
    right: 20px;
}
.l-nav-bar > ul > li > a:hover, .l-nav-bar > ul > li > a.active {
    background: #433671;
    text-decoration: none;
    color: #fff;
}
.l-nav-bar > ul > li > a:hover svg path, .l-nav-bar > ul > li > a.active svg path {
  fill: #fff;
}
.l-nav-bar > ul > li > a:hover:after, .l-nav-bar > ul > li > a.active:after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}


.dash-body {
  padding: 30px;
}
.offer-box {
  border: 5px solid #fff;
  
}
ul.sub-nav {
    display: none;
    margin: 0;
    padding: 0;
}
ul.sub-nav li {
    padding: 8px 40px;
    margin-top:1px;
}
ul.sub-nav li a {
    display: block;
    padding: 2px 10px;
    color: #8E84B2;
    font-size: 15px;
    text-decoration: none;
}
ul.sub-nav li:hover a {
    color: #fff;
}
ul.sub-nav li:hover {
    background: #433570;
}
.mene-tg {
  position: absolute;
  color: #332a55;
  right: -40px;
  font-size: 22px;
  top: 22px;
  cursor: pointer;
  display: none;
}
.l-nav-bar > ul > li > a img {
    margin-right: 6px;
    opacity: 0.4;
}
.l-nav-bar > ul > li > a:hover img, .l-nav-bar > ul > li > a.active img {
    opacity: 1;
}
.d-header-row .dropdown {
    background: #FBFBFB;
    border-right: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    padding: 15px;
    margin-right: 20px;
}
.d-header-row .dropdown .btn {
    color: #000;
    background: no-repeat;
    border: none;
    padding: 5px;
    font-size: 14px;
    font-weight: 500;
}
.d-header-row .dropdown ul.dropdown-menu {
    margin-left: -16px !important;
    border-radius: 0;
    border-color: #eee;
    margin-top: 13px !important;
}
.d-header-row .dropdown ul.dropdown-menu .dropdown-item {
    color: #777;
    font-size: 15px;
}
.head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 10px;
}
.head-row h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}
.cus-btn {
    display: inline-block;
    background: #9F3325;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 6px;
    border:none;
}
.border-btn {
  background: #fff;
  color: #9F3325;
  border: 1px solid #9F3325;
}
.border-btn:hover {
  background: #ba1500;
  color: #fff;
  border: 1px solid #ba1500;
}
.cus-btn i {
    margin-right:5px;
}
.cus-btn:hover {
    background: #ba1500;
}
.dash-table {
  box-shadow: 0 0 8px rgb(0 0 0 / 15%);
  border-radius: 8px;
  max-height: 600px;
  margin-bottom: 25px;
}
.text-right {
  text-align: right;
}
.txt-btn {
  font-weight: 600;
  text-underline-offset: 4px;
}
.dash-table table {
  background: #fff;
}
.dash-table table thead th {
  background: #F9F9FF;
  padding: 15px 15px;
  text-align: center;
  position: sticky;
  top: 0;
  white-space: nowrap;
}

.dash-table table tbody td {
  padding: 10px 15px;
  vertical-align: middle;
  border: 1px solid #e9e9e9;
  text-align: center;
  word-break: break-word
}
.login-bg {
  background: linear-gradient(180deg, #352C59 0%, #453875 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.ligin-container {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.17);
  max-width: 550px;
  width: 100%;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.login-logo {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 25px;
}
.login-logo p {
  margin: 15px 0;
  font-size: 20px;
}
.login-form {
  max-width: 550px;
  margin: 0 auto;
}
.login-form-col {
  margin: 0 0 25px;
}
.login-form label {
  font-weight: 500;
  margin: 0 0 10px;
}
.login-form .cus-btn {
  border: none;
  width: 100%;
  padding: 15px 30px;
}
.login-form-col .form-control {
  border-radius: 8px;
  border: 1px solid #CCC;
  background: #F9F9F9;
  padding: 13px 19px;
}
.ligin-container:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(51, 39, 95, 0.10);
  width: 330px;
  height: 330px;
  right: -239px;
  top: -120px;
}
.box-shd {
  border-radius: 6px;
  background: #FFF;
  box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.08);
  /* overflow: auto; */
  margin: 0 0 25px;
}
.box-head {
  border-radius: 6px 6px 0px 0px;
  background: #F9F9FF;
  padding: 12px 20px;
}
.box-body {
  background: #fff;
  padding: 15px 20px;
}
.dash-form-col {
  margin-bottom: 15px;
}
.dash-form-col:last-child {
  margin: 0;
}
.dash-form-col label {
  margin: 0 0 7px;
  font-weight: 500;
}
.dash-form-col .form-control {
  padding: 10px 15px;
  border-radius: 5px;
border: 1px solid #CCC;
background-color: #FBFBFB;
}
.add-m {
  position: relative;
}
.add-p {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #dee2e6;
  border-radius: 0 6px 6px 0;
  height: 100%;
  padding: 0 11px;
  color: #342E55;
  font-size: 20px;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
  border-radius: 2px !important;
  border: 1px solid #240D76;
  background-color: #EBEBEB;
}
.form-check-input:checked[type=checkbox] {
  background-color: #240D76;
}
.box-head h4 {
  margin: 0;
}
.height-full {
  height: calc(100% - 25px);
}
.dash-btn-group {
  display: flex;
  column-gap: 25px;
}
.dash-btn-group .cus-btn {
  min-width: 130px;
}
.box-shd table tbody td, .box-shd table thead th {
  padding: 10px 15px;
}
.txt-pend {
  color: #FF0000;
  text-decoration: none;
}
.txt-comp {
  color: #00CE2D;
  text-decoration: none;
}
.search-bar {
  display: flex;
  max-width: 550px;
  padding: 10px 0;
}
.search-bar .form-control {
  width: calc(100% - 130px);
  border-radius: 6px 0 0 6px;
}
.search-bar .cus-btn {
  border-radius: 0 6px 6px 0;
  padding: 8px 20px;
  width: 130px;
}
.set-year-bar {
  display: flex;
  column-gap: 15px;
  align-items: center;
}
.set-year-bar .form-control {
  max-width: 150px;
  border-radius: 5px;
  border: 1px solid #CCC;
  background: #FBFBFB;
}
.set-year-bar label {
  min-width: 90px;
  margin: 0;
}
.set-year-bar {
  display: flex;
  column-gap: 15px;
  align-items: center;
  padding: 10px 0;
}
.btn-groups {
  display: flex;
  column-gap: 15px;
  flex-wrap: wrap;
}
.btn-groups .form-control {
  width: 150px;
}
.btn-groups .cus-btn {
  padding: 10px 18px;
}
.dash-f .form-control.f-h {
  width: 45px;
  text-align: center;
  margin-left: 15px;
}
.dash-f .form-control {
  width: calc(100% - 60px);
}
.dash-f {
  display: flex;
}
.pr-hs h5 {
  font-size: 20px;
}
.pr-hs .modal-header {
  padding: 15px 25px;
}
.pr-hs .modal-body {
  padding: 15px 25px;
}
.pr-hs table th, .pr-hs table td {
  padding: 10px 15px;
  border: 1px solid #f4f4fd;
}
.pr-hs table th {
  background: #f4f4fd;
}
.pr-hs table {
  border-radius: 6px;
  overflow: auto;
}
.dash-search {
  max-width: 350px;
  width: 100%;
  position: relative;
  margin: 0;
}
.dash-search button {
  position: absolute;
  right: 10px;
  border: none;
  background: no-repeat;
  top: 11px;
}
.fl-btn {
  background: #fff;
  border: 1px solid #ccc;
  margin-right: 15px;
  color: #666;
}
.fl-btn:hover {
  color: #fff;
}
.pgn ul {
  display: flex;
  justify-content: end;
}
.pgn ul li {
  padding: 0 5px;
}
.pgn ul li a {
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  text-decoration: none;
  color: #888;
}
.pgn ul li a:hover, .pgn ul li a.active {
  background: #9F3325;
  color: #fff;
  border-color: #9F3325;
}

.add-us .modal-title {
  font-size: 20px;
}
.add-us .modal-header {
  padding: 15px 25px;
}
.add-us .modal-body {
  padding: 15px 25px;
}
.add-us .modal-dialog {
  max-width: 600px;
}
.con-modal {
  text-align: center;
  padding: 15px;
}
.con-modal .dash-btn-group {
  justify-content: center;
}
.dl-icon {
  display: inline-block;
  background: #9F3325;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  font-size: 24px;
  margin: 0 0 15px;
}
.con-modal p {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 50px;
}