@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* font-family: 'Poppins', sans-serif; */

:root {
  --poppinsfont: "Poppins", sans-serif;
  --yellowcolor: #ff9800;
  --skyblue: #2b79ce;
  --deepblue: #1e293b;
  --transition: 0.4s all ease-in-out;
}

body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3rem;
  color: #676767;
  font-family: var(--poppinsfont);
}

.wrapper.mm-page {
  /* z-index: 0; */
  position: initial;
}

img {
  max-width: 100%;
}

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

span,
mark {
  display: inline-block;
}

a {
  transition: var(--transition);
  display: inline-block;
}

a:hover {
  color: var(--skyblue);
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

p {
  font-size: 14px;
}

section {
  padding: 90px 0;
  position: relative;
}

.button,
button,
input[type="submit"] {
  background: var(--skyblue);
  border-radius: 4px;
  border: 0;
  color: #fff;
  /* font-weight: 600; */
  font-size: 14px;
  padding: 9px 30px;
  transition: 0.4s all ease-in-out;
  text-transform: capitalize;
  border: 1px solid transparent;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background: transparent;
  color: var(--skyblue);
  border-color: var(--skyblue);
}

label {
  margin-bottom: 5px;
  display: inline-block;
  font-size: 13px;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--playfairfont);
  margin-bottom: 10px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

select {
  width: 100%;
  height: 50px;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #efefef url(../images/down_arrow.svg) no-repeat calc(100% - 20px) center / 18px;
}

input:not(input[type="checkbox"], input[type="radio"], input[type="submit"]) {
  width: 100%;
  height: 50px;
  border-radius: 3px;
  border: 1px solid #ccc;
  padding: 10px 15px;
}

/* checkbox  */

.checkbox {
  position: relative;
  margin-left: 20px;
  padding-left: 30px;
  /* font-size: 18px; */
  color: #000;
}

.checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: auto !important;
}

.checkbox input:checked~span::after {
  background-size: 15px;
}

.checkbox span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border: 2px solid #000;
  border-radius: 3px;
}

.checkbox span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background: url(../images/svg/check.svg) no-repeat center center;
  background-size: 0;
  transition: 0.2s all ease-in-out;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 51px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #2196f3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* checkbox  end*/

/* custom radio  */

.radioBtn {
  position: relative;
  margin-left: 20px;
  padding-left: 24px;
  font-size: 14px;
  color: #000;
}

.radioBtn input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 100% !important;
}

.radioBtn input:checked~span::after {
  background: #000;
  transform: scale(1);
}

.radioBtn span::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  border: 2px solid #000;
  border-radius: 50%;
}

.radioBtn span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 4px;
  top: 4px;
  background-size: 0;
  transition: 0.2s all ease-in-out;
  border-radius: 50%;
}

/* custom radio end */

/* custom file upload  */

.fileupload {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.fileupload span {
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 5px 0 0 5px;
}

.fileupload mark {
  height: 100%;
  background: #ecebeb;
  padding: 10px 20px;
}

.fileupload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

/* custom file upload end */

.sitemain {
  /* padding-top: 112px; */
}

/* header */

.site-header {
  /* position: fixed; */
  width: 100%;
  top: 0;
  z-index: 2;
  transition: 00.5s ease-in-out;
  left: 0;
  /* background: #fff; */
}

.navbar-nav>li {
  padding: 0 10px;
}

.navbar-nav>li>a {
  color: #000;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover {
  color: var(--skyblue);
}

/* sub menu*/

.sub_menu_items {
  position: relative;
}

.sub-menu {
  position: absolute;
  left: 0;
  top: 230%;
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  z-index: -5;
  transition: 0.4s all ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.sub-menu>li>a {
  display: block;
  color: #000;
  padding: 8px 0;
  line-height: 1;
  text-transform: capitalize;
}

.navbar-nav>li.sub_menu_items:hover .sub-menu {
  opacity: 1;
  top: 100%;
  z-index: 1;
  pointer-events: all;
}

.submenuarrow {
  font-size: 15px;
  cursor: pointer;
}

/* sub menu end*/

/* mobile menu  */

body.offcanvas-active {
  overflow: hidden;
}

.offcanvas-header {
  display: none;
}

.screen-darken {
  height: 100%;
  width: 0%;
  z-index: 30;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
  z-index: 10;
  transition: opacity 0.3s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}

.navbar-toggler {
  display: none;
}

.btm_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* mobile menu end*/

/*main style start */
.main_hldr {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  padding: 0 10px 0 0;
}

.left_part {
  width: 245px;
  padding: 4rem 1rem 1rem 1rem;
  height: 100vh;
  /* box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.2); */
  overflow: auto;
  z-index: 60;
  background: #fff;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  transition: var(--transition);
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left_part::-webkit-scrollbar,
.left_part::-webkit-scrollbar-track,
.left_part::-webkit-scrollbar-thumb {
  display: none;
  opacity: 0;
}

.right_part {
  width: calc(100% - 245px);
  padding: 4.3rem 1rem 1rem 1rem;
  position: relative;
  transition: var(--transition);
  margin-left: auto;
}

.logo {
  width: 220px;
  overflow: hidden;
  transition: var(--transition);
}

.logo .logo_img_1 {
  min-width: 220px;
  transition: var(--transition);
}

.logo_img_2 {
  display: none;
}

.add_btn {
  width: 100%;
  padding: 0.5rem;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  font-weight: 500;
  text-align: center;
  border-radius: 35px;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.add_btn:hover {
  background: var(--deepblue);
  color: #fff;
  border-color: var(--deepblue);
}

.add_btn i {
  font-size: 25px;
  vertical-align: middle;
  margin-right: 8px;
}

.add_btn span {
  vertical-align: middle;
  transition: 0.1s all ease-in-out;
  opacity: 1;
  white-space: nowrap;
}

.add_btn:hover {
  /* background: #3498db;
  border: 1px solid #3498db;
  color: #fff; */
}

.parent_folder ul li,
.other_list ul li {
  color: #1e293b;
  padding: 5px;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
}

.parent_folder ul li a,
.other_list ul li a {
  display: block;
  text-transform: capitalize;
}

.main_hldr.hide .parent_folder span:first-child {
  margin-right: 0;
}

/* .main_hldr.hide .parent_folder,
.main_hldr.hide .other_list ul li {
  text-align: center;
} */
.parent_folder:not(:first-child) {
  display: flex;
  align-items: center;
}

.parent_folder:not(:first-child) span {
  white-space: nowrap;
  opacity: 1;
  transition: var(--transition);
}

.parent_folder>div>span:not(:first-child):where(span) {
  white-space: nowrap;
  opacity: 1;
}

.parent_folder>div {
  display: flex;
  align-items: center;
}

.parent_folder>div span {
  transition: var(--transition);
  white-space: nowrap;
}

/* .parent_folder:hover, */
.submenuopen,
.other_list ul li.active,
.other_list ul li:hover {
  background: #e2e8f0;
}

.parent_folder span:first-child {
  margin-right: 5px;
}

.parent_folder span:first-child a i {
  font-size: 15px;
  vertical-align: middle;
  color: #1e293b;
  width: 15px;
  text-align: center;
}

.parent_folder span img {
  width: 25px;
  margin-right: 10px;
}

.parent_folder span:last-child a {
  vertical-align: middle;
  line-height: 20px;
  color: #1e293b;
  margin-left: 5px;
}

.file_list {
  margin-top: 20px;
}

.other_list ul li a span:first-child {
  margin-right: 10px;
}

.other_list ul li a span img {
  width: 20px;
}

.other_list ul li:last-child a span img {
  width: 24px;
  margin-left: -2px;
}

.other_list ul li a span {
  color: #1e293b;
  vertical-align: middle;
  display: inline-block;
  white-space: nowrap;
  transition: var(--transition);
}

/* .other_list ul li:not(:last-child), */
.file_list ul li:not(:last-child) {
  margin-bottom: 5px;
}

.other_list ul li:last-child a span {
  color: #f55656;
}

/* .other_list ul li:last-child:hover {
  background: #ffe7e7;
} */

.other_list {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.main_head {
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 70;
  /* padding-left: 255px; */
  padding-top: 15px;
  padding-bottom: 15px;
  padding: 8px 25px;
  background: #ffffffc7;
  backdrop-filter: blur(4px);
}

/* toggle button design start */
.toggle_btn {
  cursor: pointer;
  margin-left: 34px;
  /* background: #fff; */
}

.toggle_btn span {
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background: #317ec3;
  display: block;
  margin: 4px 0;
}

/* toggle button design end */
.search_box {
  position: relative;
  width: 360px;
}

.search_box img {
  max-width: 18px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
}

.search_box input.form-control {
  padding: 5px 15px 5px 45px !important;
  border-radius: 20px !important;
  height: 40px !important;
  font-size: 14px;
}

.search_box input.form-control::placeholder {
  font-size: 12px;
  color: #c9c9c9;
}

.search_box input.form-control:is(:hover, :focus) {
  box-shadow: none;
}

.search_box button {
  width: 20px;
  padding: 0;
  background: #fff;
  margin-left: 15px;
}

.search_box button img {
  width: 100%;
}

/* style while closing the sidebar */
.main_hldr.hide .left_part {
  width: 70px;
}

.main_hldr.hide .left_part .add_btn span {
  /* display: none; */
  font-size: 0;

  opacity: 0;
}

.main_hldr.hide .left_part .parent_folder span:last-child {
  /* display: none; */
  font-size: 0;
}

.main_hldr.hide .left_part .parent_folder:first-child div span:nth-child(2) {
  /* display: none; */
  opacity: 0;
  font-size: 0;
}

.main_hldr.hide a.admin span,
.main_hldr.hide .left_part .other_list ul li a span:last-child,
.main_hldr.hide .left_part .file_list ul li a span {
  font-size: 0;
}

.main_hldr.hide .left_part .add_btn i {
  margin: 0;
}

.main_hldr.hide .left_part .parent_folder span img {
  margin: 0;
}

.main_hldr.hide .left_part .other_list ul li a span {
  margin: 0;
}

.main_hldr.hide .left_part .add_btn i {
  font-size: 20px;
}

.main_hldr.hide .left_part .add_btn {
  padding: 0.34rem;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
}

.main_head.hide .logo {
  width: 30px;
  /* transition: var(--transition); */
}

.main_hldr.hide .right_part {
  width: calc(100% - 70px);
}

.table_hldr {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-top: 14px;
}

.inner_folder table tbody tr:last-child {
  border-color: transparent;
}

/* folder */
.inner_folder .table {
  border-radius: 10px;
}

.inner_folder .table thead {
  background-color: #e2e8f0;
  text-align: center;
}

.inner_folder .table thead th {
  font-weight: 500;
  padding: 10px 0.5rem;
  text-transform: capitalize;
}

.inner_folder .nav li button span {
  margin-right: 7px;
  font-size: 18.9px;
  line-height: 1;
}

.inner_folder .table thead th:last-child {
  text-align: right;
  border-top-right-radius: 8px;
  text-align: center;
}

.inner_folder .table tbody tr td .folder_img {
  width: 25px;
}

.inner_folder .table tbody tr td a ul li span {
  color: var(--deepblue);
}

.inner_folder .table tbody tr td {
  vertical-align: middle;
  padding: 0.4rem 0.5rem;
}

.inner_folder .table tbody tr td:last-child {
  text-align: center;
}

.folder_name li {
  display: inline-block;
  padding-right: 10px;
}

.folder_name li:last-child {
  padding-right: 0;
}

.members {
  display: flex;
  align-items: center;
}

.members li span {
  position: relative;
  cursor: pointer;
}

.members li span:hover {
  z-index: 1;
}

.members li:not(:first-child) {
  margin-left: -12px;
}

.members li .member_img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  display: block;
}

.members li .no_member {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  overflow: hidden;
  /* padding: 5px; */
  text-transform: uppercase;
  background: #0ea5e9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border: 3px solid #fff;
}

.members li .member_img img {
  width: 100%;
  height: 100%;
}

.action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.action li span {
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
}

.action li:last-child span {
  padding-right: 0;
}

.action li:nth-child(2) span {
  font-size: 19px;
}

.action .dropdown-toggle::after {
  display: none;
}

.inner_folder h4 {
  font-size: 20px;
  color: #33373c;
}

.inner_folder .nav li button {
  text-transform: capitalize;
  border: 0;
  background: #c8d1dd;
  color: #000;
  line-height: 1;
  padding: 10px 20px;
  /* font-size: 15px; */
  display: flex;
  align-items: center;
}

.inner_folder .nav li {
  margin-right: 10px;
}

.nav {
  border: 0;
}

.inner_folder .nav li button.active {
  background: #2b79ce;
  color: #fff;
}

.tags ul {
  display: flex;
  /* flex-wrap: wrap; */
}

.tags ul li {
  padding: 0 4px;
}

.tags ul li p {
  background: rgb(226, 232, 240);
  color: #000;
  padding: 3px 4px 3px 13px;
  border-radius: 30px;
  font-size: 12px;
  border: 1px solid #cecececc;
  cursor: pointer;
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: space-between;
}

.tags ul li {
  width: 9.5%;
  flex-shrink: 0;
}

.tags ul li.active p {
  background: #dde3ea;
  color: #000;
  border-color: #dde3ea;
}

.tags ul li p span {
  background: #000;
  display: inline-flex;
  color: #fff;
  padding: 4px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  margin-left: 8px;
  font-size: 11px;
}

.tags {
  padding-bottom: 5px;
  overflow-x: scroll;
}

.tags ul {
  width: 100vw;
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2b79ce #c8d1dd;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: #c8d1dd;
}

*::-webkit-scrollbar-thumb {
  background-color: #2b79ce;
  border-radius: 20px;
  border: 3px solid #c8d1dd;
}

.breadcrumb li a {
  color: #000;
}

.right_part .breadcrumb {
  margin-bottom: 0;
}

.right_part>nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.breadcrumb li a:hover {
  color: #2b79ce;
}

.main_wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter_part ul {
  display: flex;
  align-items: center;
}

.filter_part ul li {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.filter_part ul li:last-child {
  margin-right: 0;
}

.filter_part ul li label {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 0;
  color: #000;
}

.form-select:focus {
  box-shadow: inherit;
}

.filter_part .form-select {
  width: 120px;
  height: 33px;
  font-size: 14px;
  text-transform: capitalize;
}

.filter_part ul li input {
  width: 55px;
  padding: 5px;
  height: 32px;
}

/* notification style */
.profile_bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.noti_prifile_box {
  margin-left: 44px;
  margin-right: 10px;
}

.noti_prifile_box li,
.noti_prifile_box li a {
  position: relative;
}

.noti_prifile_box li a img {
  width: 25px;
  margin-left: 8px;
}

.noti_prifile_box li:not(:last-child) {
  margin-right: 30px;
}

.notif .notfi-bell-count span {
  position: absolute;
  right: -8px;
  top: -10px;
  background: red;
  color: #fff;
  height: 20px;
  width: 20px;
  min-height: 20px;
  min-width: 20px;
  border-radius: 50%;
  font-size: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notif ul li a,
.prof ul li a {
  font-size: 14px;
  color: #33373c;
  display: block;
}

.notif ul li:not(:last-child) {
  margin-bottom: 5px;
}

.notif .dropdown-toggle::after,
.prof .dropdown-toggle::after {
  display: none;
}

.notif .dropdown-menu ul li,
.prof .dropdown-menu ul li {
  margin: 0;
  padding: 0 10px;
  border-radius: 10px;
  transition: var(--transition);
}

.prof .dropdown-menu ul li:hover {
  background: #ececec;
}

.dropdown_div>div:not(:last-child) {
  margin-bottom: 8px;
}

.dropdown_div>div {
  display: flex;
  align-items: center;
}

.dropdown_div>div span {
  white-space: nowrap;
}

.dropdown_div>div span img {
  width: 20px;
}

.parent_folder .dropdown_div {
  padding: 8px 0 0 45px;
  display: none;
}

/* 21/7/2023 */
.pagination_hldr {
  margin-top: 30px;
}

.pagination_hldr ul li span,
.pagination_hldr ul li a {
  font-size: 13px;
  line-height: 1;
  padding: 7px 10px;
}

.pagination .page-item .page-link:focus {
  box-shadow: none;
}

.main_hldr.hide .left_part_cont .parent_folder {
  pointer-events: none;
}

.notif .dropdown-menu {
  width: 325px;
  transition: var(--transition);
  transform: translate(0px, 50px) !important;
}

.notif .dropdown-menu h6 {
  font-size: 13px;
  margin-bottom: 2px;
}

.notif .dropdown-menu p {
  font-size: 13px;
  line-height: 1.5;
  text-align: justify;
}

.notif .dropdown-menu ul li a div {
  padding: 5px 0;
}

.notif .dropdown-menu ul li {
  position: relative;
  padding: 0 10px 0 0;
}

.notif .dropdown-menu ul li::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #ddd;
  left: 0;
  bottom: 0;
}

.notif .dropdown-menu ul li:last-child:after {
  display: none;
}

.notif .dropdown-menu.show {
  transform: translate(0px, 40px) !important;
}

.prof .dropdown-menu {
  width: 200px;
}

.prof .dropdown-menu span img {
  max-width: 20px;
}

.prof .dropdown-menu ul li a {
  padding: 5px 0;
}

.prof .dropdown-menu.show {
  transform: translate(0px, 40px) !important;
}

.prof .dropdown-menu ul li {
  position: relative;
}

.prof .dropdown-menu ul li::after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #ddd;
}

.prof .dropdown-menu ul li:last-child:after {
  display: none;
}

.share_modal .modal-body {
  position: relative;
}

.share_modal .modal-body .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.share_modal .modal-body h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--skyblue);
}

.share_modal .modal-body input.form-control,
.share_modal .modal-body select.form-control {
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 8px 10px;
  color: #9c9c9c;
  height: auto;
}

.share_modal .modal-body input.form-control::placeholder {
  font-size: 14px;
  color: #9c9c9c;
}

.share_modal .modal-body input.form-control:is(:hover, :focus),
.share_modal .modal-body select.form-control:is(:hover, :focus) {
  box-shadow: none;
}

.share_modal .modal-body .share_btn_hldr button {
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #ddd;
  color: var(--skyblue);
  font-weight: 400;
  outline: none;
}

.share_modal .modal-body .share_btn_hldr button:last-child {
  background: var(--skyblue);
  color: #fff;
  border: 1px solid var(--skyblue);
}

/* file preview start */
.title {
  font-size: 20px;
  line-height: 1.5;
  color: var(--deepblue);
}

.noti_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 4px;
  padding: 0 !important;
  margin-right: 10px;
}

.noti_icon i {
  font-size: 20px;
}

.noti_icon.pink_bg {
  background: rgba(240, 0, 185, 0.1);
}

.noti_icon.pink_bg i {
  color: #f000b9;
}

.noti_icon.blu_bg {
  background: rgba(14, 165, 233, 0.1);
}

.noti_icon.blu_bg i {
  color: #0ea5e9;
}

.noti_icon.vio_bg {
  background: rgba(79, 70, 229, 0.1);
}

.noti_icon.vio_bg i {
  color: #4f46e5;
}

.noti_icon.green_bg {
  background: rgba(16, 185, 129, 0.1);
}

.noti_icon.green_bg i {
  color: #10b981;
}

.fldr_img img {
  width: 30px;
  height: 30px;
}

.fldr_img a img {
  width: inherit;
  height: inherit;
}

.fldr_hldr h6 {
  margin: 10px 0 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--deepblue);
}

.fldr_hldr ul {
  width: 100%;
  display: flex;
}

.fldr_hldr ul li {
  width: auto !important;
  padding: 0 !important;
  position: relative;
}

.fldr_hldr ul li:not(:last-child) {
  margin-right: 15px;
}

.fldr_hldr ul li:not(:last-child):after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--deepblue);
  right: -11px;
  top: 50%;
  transform: translate(0, -50%);
}

.fldr_hldr {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* .pdf{
  background: #ececec;
  padding: 5px;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1;
  border: 1px solid #bdbdbd;
} */
.folder_name li i {
  font-size: 20px;
  color: #7fd5ff;
}

.table_hldr table tr td {
  vertical-align: middle;
  padding: 0 0.5rem;
}

.members.file_preview li:not(:first-child) {
  margin-left: 10px;
}

.action.file_preview {
  justify-content: flex-end;
}

.action.file_preview .fl_prv span {
  padding: 0;
}

.action.file_preview .fl_prv span img {
  width: 20px;
}

.action.file_preview .dropdown-menu {
  width: 200px;
}

.dropdown-menu.fl_prv li a {
  font-size: 13px;
}

/* file preview end */
.file_list ul li a span {
  color: var(--deepblue);
  transition: var(--transition);
}

.other_list.first_list {
  padding: 0;
  border: 0;
}

.first_list.other_list ul li:last-child a span {
  color: var(--deepblue);
}

/* .first_list.other_list ul li:last-child:hover {
  background: #f0f0f0;
} */
.inner_folder .table thead th:first-child {
  padding-left: 0.5rem;
  border-top-left-radius: 8px;
  text-align: center;
}

.inner_folder .table thead th:first-child input {
  margin-right: 10px;
}

.main_action {
  display: flex;
}

.main_action li:not(:last-child) {
  margin-right: 15px;
}

.main_action li a {
  padding: 4px 10px 4px 4px;
  border: 1px solid #c1c1c1;
  border-radius: 30px;
  color: var(--deepblue);
}

.main_action li a span img {
  max-width: 25px;
  margin-right: 5px;
}

/* 16/8/2023 */

.cr_ind_btn:hover,
.grid_list:hover .log_in:hover {
  color: #2b79ce;
  /* background: #fff; */
}

.profile_bar a.cr_ind_btn {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background: #ff9800;
  border-color: transparent;
  padding: 10px 18px;
  font-weight: 500;
  border-radius: 30px;
  color: #fff;
}

.profile_bar a.cr_ind_btn:hover {
  background: #ff9900b2;
  border-color: #ff9900b2;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.profile_bar a.cr_ind_btn {}

.prof a {
  color: #1e293b;
}

.left_part_cont .dropdown-item {
  font-size: 14px;
  line-height: 1;
  padding: 7px 10px;
}

.left_part_cont .dropdown-item i {
  min-width: 16px;
  margin-right: 5px;
}

.dropdown-menu li:first-child i {
  font-size: 16px;
}

.left_part_cont .dropdown-item:hover {
  background: var(--skyblue);
  color: #fff;
}

.left_part_cont .dropdown-menu {
  left: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 0;
}

.main_wrp>.nav {
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: inherit;
}

.common_form label mark {
  padding: 0;
  line-height: 1;
  background: transparent;
  color: red;
}

.common_form input:not(input[type="submit"]),
.common_form select {
  height: 40px;
  border-radius: 4px;
  color: #676767;
  font-size: 13px;
  border-left: 3px solid #8a8a8a;
}

.radio_btn_part ul li {
  display: inline-block;
  margin-right: 10px;
}

.radio_btn_part ul li:last-child {
  margin-right: 0;
}

.radio_btn_part ul li .radioBtn {
  margin-left: 0;
}

.radio_btn_part {
  align-self: center;
}

.prev_btn {
  text-align: right;
}

.prevtbtn,
.nextbtn {
  background: var(--skyblue);
  padding: 7px 26px;
  text-align: center;
  color: #fff;
  border-radius: 7px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid transparent;
  text-transform: capitalize;
}

.prevtbtn:hover,
.nextbtn:hover {
  background: transparent;
  border-color: var(--skyblue);
  color: var(--skyblue);
}

ul.actionBrn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

ul.actionBrn li {
  padding: 0 5px;
  color: var(--deepblue);
}

ul.actionBrn li a {
  color: var(--skyblue);
}

ul.actionBrn li:last-child a {
  color: var(--deepblue);
}

.inner_login .common_form ul li {
  margin-bottom: 15px;
}

.inner_login .common_form ul li:last-child {
  margin-bottom: 0;
}

.inner_login {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
  max-width: 470px;
  margin: auto auto;
  position: relative;
  z-index: 1;
}

.inner_login::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.19);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.2px);
  -webkit-backdrop-filter: blur(7.2px);
  border: 1px solid rgba(255, 255, 255, 0.37);
  z-index: -1;
}

form.common_form figure {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  margin: -60px auto auto;
  /* outline: 1px dashed #2b79ce; */
  filter: drop-shadow(0 0 5px #ccc);
}

form.common_form figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login_head {
  margin-bottom: 40px;
}

.login_head h3 {
  margin-top: 10px;
  font-weight: 600;
  color: #000;
}

.login_part {
  display: flex;
  align-items: center;
  height: 100vh;
  justify-content: center;
  position: relative;
}

.login_part::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 15%);
}

.inner_login .common_form input[type="text"] {
  background: #fff url(../images/svg/user.svg) no-repeat 10px center / 15px;
  border: 0;
  border-radius: 0;
  text-transform: capitalize;
  padding-left: 32px;
}

.inner_login .common_form input[type="password"] {
  background: #fff url(../images/svg/padlock.svg) no-repeat 10px center / 12px;
  border: 0;
  border-radius: 0;
  text-transform: capitalize;
  padding-left: 32px;
}

.customchk {
  margin-left: 0;
}

.customchk .checkbox {
  margin-left: 0;
  margin-bottom: 0;
  text-transform: capitalize;
}

.customchk .checkbox span::before {
  width: 18px;
  height: 18px;
  top: -2px;
}

.checkbox input:checked~span::after {
  top: -3px;
  left: -1px;
}

.login_part a {
  color: var(--deepblue);
}

a.admin {
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 7px;
  width: 100%;
  border-radius: 15px;
}

a.admin:hover {
  background: #f0f0f0;
}

a.admin i {
  font-size: 20px;
  margin-right: 10px;
  color: #94a3b8;
}

a.admin span {
  color: #1e293b;
  white-space: nowrap;
  transition: var(--transition);
  text-transform: capitalize;
}

button.btn-close {
  background: transparent;
  font-size: 25px;
}

.announce_part {
  background: #2b79ce;
  color: #ffff;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

.notif .dropdown-menu li.nav-item::after {
  display: none;
}

.notif .dropdown-menu li.nav-item button {
  padding: 5px 10px;
  font-size: 14px;
  background: #e2e8f0;
  color: #000;
  border: 0;
}

.notif .dropdown-menu li.nav-item button.active {
  background: #c7dcf7;
}

.annous_part {
  padding-top: 10px;
}

.announcement_pg .inner_folder .table thead th {
  padding: 10px 10px;
}

.announcement_pg .action li span {
  padding: 6px;
}

.announce_create {
  /* color: var(--deepblue); */
}

.modal-header {
  padding: 10px 16px;
  background: #027afd2e;
  border: 0;
}

.modal-header .modal-title {
  color: #000;
}

.useradmin .search_box {
  width: 100%;
  margin-bottom: 12px;
}

a.cmn_btn {
  background: var(--skyblue);
  color: #fff;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 12px;
}

a.cmn_btn:hover {
  background: var(--deepblue);
}

.useradmin .table thead th {
  padding: 10px 8px;
}

.action_btnlist li a {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  background: var(--skyblue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: relative;
}

.action_btnlist li a:hover span {
  opacity: 1;
}

ul.action_btnlist span {
  position: absolute;
  background: #000;
  border-radius: 2px;
  font-size: 9px;
  z-index: 1;
  bottom: -20px;
  right: 0;
  padding: 5px 8px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  text-transform: capitalize;
}

.action_btnlist li {
  display: inline-block;
  margin-right: 5px;
}

.action_btnlist li:last-child {
  margin-right: 0;
}

.hide .submenuopen>a.sumenuList,
.hide a.sumenuList {
  background: none;
}

a.sumenuList {
  background: url(../images/down_arrow.svg) no-repeat right center / 10px;
}

.submenuopen>a.sumenuList {
  background: url(../images/up_arrow.svg) no-repeat right center / 10px;
}

.other_list ul li .submenu li {
  margin: 0;
  padding: 0;
  border-radius: 0;
}

.hide li.submenuopen .submenu,
.submenu {
  height: 0;
  display: none;
  background: #f9f9f9;
  background: #fff;
}

li.submenuopen .submenu {
  height: 100%;
  display: block;
  padding: 5px;
  margin: 5px;
}

.submenu li a {
  color: #1e293b;
  font-size: 13px;
  padding: 10px 5px;
  line-height: 1;
  text-transform: capitalize;
  border-bottom: 1px dashed #e2e8f0;
}

.submenu li a:hover i {
  padding-left: 10px;
}

.submenu li:last-child a {
  border: 0;
}

.common_form label {
  display: block;
}

.master_page .inner_folder .table tbody tr td:last-child {
  /* text-align: left; */
}

.master_page .inner_folder .table thead th:last-child {
  /* text-align: left; */
}

.master_page .inner_folder .table thead th {
  padding: 0.3rem 0.5rem;
}

.breadcrumb-item+.breadcrumb-item {
  /* text-transform: capitalize; */
}

.other_list ul li a i {
  margin-right: 4px;
  font-size: 15px;
  line-height: 0;
  transition: var(--transition);
}

li.submenuopen,
li.submenuopen:hover {
  border-radius: 0;
  background: transparent;
}

.form-control.textarea {
  border-left: 3px solid #8a8a8a;
  resize: none;
}

/* login  */

/* log in page start */
.site-main.log_in {
  padding: 0;
  height: 100vh;
}

.rounded_sec {
  display: flex;

  padding-left: 7px;
  padding-top: 20px;
}

.rounded_sec2 {
  display: flex;

  padding-left: 7px;
  padding-top: 15px;
}

.rounded_sec3 {
  display: flex;

  padding-left: 7px;
  padding-top: 15px;
}

.rounded_main {
  /* display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center; */
  padding: 1rem, 0.5rem;
}

label {
  margin-bottom: 0;
}

.privileges_box {
  vertical-align: middle;
  width: 25%;
  margin-top: 5px;
  margin-bottom: 10px;
  border: none;
}

.log_in {
  height: 100vh;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: url("../images/back_blurred_img.jpg");
  /* position: relative;
  z-index: 2; */
}

/* .log_in::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background: #c8e2fc;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 0 0 0 999px;
} */

/* .log_in::after {
  position: absolute;
  content: "";
  width: 160px;
  height: 150px;
  background: #c8e2fc;
  left: -20px;
  bottom: -30px;
  z-index: -1;
  border-radius: 50%;
} */

.log_in_hldr {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background: #fff;
}

.inner_lg_in {
  padding: 20px 50px;
  text-align: center;
  background: #fff;
}

.log_in_logo {
  display: block;
  margin: 0 0 15px 0;
}

.log_in_logo img {
    width: 180px;
}

.crt_nw_acc {
  color: #7e7e7e;
}

.log_in_frm {
  margin: 50px 0 0 0;
}

.log_in_frm h6 {
  font-size: 14px;
  line-height: 1.5;
  color: #3d3b47;
  margin-bottom: 8px;
}

.log_in_frm input {
  margin-bottom: 15px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  box-shadow: 0 2px 10px -3px rgb(0, 0, 0, 0.2);
}

.log_in_frm input::placeholder {
  color: #cfcfcf;
}

.log_in_frm input:focus {
  box-shadow: none;
  border: 1px solid #696969;
}

.log_in_frm .eye {
  position: relative;
}

.log_in_frm .eye i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

.log_in_frm .eye a {
  position: absolute;
  color: var(--deepblue);
  font-size: 12px;
  top: -30px;
  right: 0;
}

.log_in_frm input[type="submit"] {
  margin-top: 15px;
  border: none;
  background: #2666fa;
  color: #fff;
}

.log_in_frm input[type="submit"]:hover {
  background: #18409e;
}

.inner_lg_in p {
  width: 100%;
  text-align: center;
  font-size: 18px;
  position: relative;
  color: #616161;
  margin: 40px 0;
}

.inner_lg_in p span {
  background: #fff;
  display: inline-block;
  z-index: 1;
  position: relative;
  padding: 0 5px;
}

.user_box {
  width: 173px;
}

.content_newbox {
  width: calc(100% - 173px);
  flex-wrap: wrap;
}

.full_box {
  margin: 0 9px;
  padding: 0 1px;
}

.table_checkbox {
  border-bottom: 1px solid rgba(128, 128, 128, 0.281);
}

.inner_lg_in p:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #bdbdbd;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.log_in_img {
  /* background: #2666fa38; */
  height: 100%;
  border-bottom-right-radius: 23px;
}

.log_in_img figure img,
.log_in_img figure {
  height: 100%;
}

.log_in_img figure img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

label.privileges_box {
  display: inline-flex;
  align-items: center;
}

label.privileges_box span {
  padding-left: 4px;
}

table tr td.text-center {
  text-align: center;
}

/* 
markupslab style */

.markup-slab-radio {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.dbRabgeDiv{
  display: flex;
  gap: 2px;
}


/* responsive */

@media (max-width: 1500px) {}

@media (max-width: 1400px) {
  .tags ul li {
    width: 11.5%;
    flex-shrink: 0;
  }
}

@media (max-width: 1300px) {}

@media (max-width: 1199px) {}

@media (max-width: 991px) {

  /* mobile menu  */
  .offcanvas-header {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .offcanvas-header .btn-close {
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
  }

  .mobile-offcanvas {
    visibility: hidden;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 440px;
    z-index: 1200;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    background: #fff;
    padding-top: 40px;
  }

  .mobile-offcanvas.show {
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-offcanvas .container,
  .mobile-offcanvas .container-fluid {
    display: block;
  }

  .navbar-nav>li>a {
    padding: 15px 0;
    line-height: 1;
    border-bottom: 1px solid #ece4e4;
    display: block;
  }

  .navbar-toggler {
    display: block;
    padding: 10px;
    background: #000;
    transition: 0.4s all ease-in-out;
    line-height: 0;
  }

  .navbar-toggler img {
    filter: brightness(100) invert();
  }

  /* mobile menu end */
}

@media (max-width: 767px) {}

@media (max-width: 479px) {}