
@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --app-container: #f3f6fd;
  --main-color: #1f1c2e;
  --secondary-color: #4a4a4a;
  --link-color: #1f1c2e;
  --link-color-hover: #c3cff4;
  --link-color-active: #fff;
  --link-color-active-bg: #1f1c2e;
  --projects-section: #fff;
  --message-box-hover: #fafcff;
  --message-box-border: #e9ebf0;
  --more-list-bg: #fff;
  --more-list-bg-hover: #f6fbff;
  --more-list-shadow: rgba(209, 209, 209, 0.4);
  --button-bg: #1f1c24;
  --search-area-bg: #fff;
  --star: #1ff1c2e;
  --message-btn: #fff;
  --rgb-beige: 255, 252, 249;
  --color-shade-10: rgba(var(--rgb-black), 0.1);
  --rgb-ink: 40, 60, 70;
  --rgb-uncolor: 135, 116, 87;
  --color-shadow-warm: rgba(var(--rgb-uncolor), 0.1);
}

.dark:root {
  --app-container: #1f1d2b;
  --app-container: #111827;
  --main-color: #fff;
  --secondary-color: rgba(255, 255, 255, 0.8);
  --projects-section: #1f2937;
  --link-color: rgba(255, 255, 255, 0.8);
  --link-color-hover: rgba(195, 207, 244, 0.1);
  --link-color-active-bg: rgba(195, 207, 244, 0.2);
  --button-bg: #1f2937;
  --search-area-bg: #1f2937;
  --message-box-hover: #243244;
  --message-box-border: rgba(255, 255, 255, 0.1);
  --star: #ffd92c;
  --light-font: rgba(255, 255, 255, 0.8);
  --more-list-bg: #2f3142;
  --more-list-bg-hover: rgba(195, 207, 244, 0.1);
  --more-list-shadow: rgba(195, 207, 244, 0.1);
  --message-btn: rgba(195, 207, 244, 0.1);
}



body {
  font-family: "DM Sans", sans-serif;  
  background-color: var(--app-container);
}

button,
a {
  cursor: pointer;
  text-decoration: none;
}

.app-container {
   flex-direction: column; 
  background-color: var(--app-container);
  transition: 0.2s;
  max-width: 100%;
}

.app-content {
  display: flex;
  height: 100%;
  overflow: hidden;
  padding: 20px 40px;
margin-top: 70px;
}
.app-header {
  display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 25px;
position: fixed;
width: 100%;
top: 0;
text-align: center;
z-index: 6;
background-color: rgba(var(--rgb-beige), 0.9);
}
#success-msg {
  position: absolute;
  right: 0;
}
.app-header-left, .app-header-right {
  display: flex;
  align-items: center;
}
.nav__main {
  display: flex;
  margin: 0;
  padding:0;
}
.nav__main li {
  list-style: none;
  margin: 0 1.2rem;
}
.nav__item a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: bold;
}
.app-header-right button {
  margin-left: 10px;
}
.app-icon {
  width: 26px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--main-color);
  position: relative;
}
.app-icon:before, .app-icon:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--main-color);
  left: 50%;
  transform: translatex(-50%);
}
.app-icon:before {
  top: -6px;
}
.app-icon:after {
  bottom: -6px;
}
.app-name {
  color: var(--main-color);
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 32px;
}

.mode-switch {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-wrapper {
  border-radius: 20px;
  background-color: var(--search-area-bg);
  padding-right: 12px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 480px;
  color: var(--light-font);
  box-shadow: 0 2px 6px 0 rgba(136, 148, 171, 0.2), 0 24px 20px -24px rgba(71, 82, 107, 0.1);
  overflow: hidden;
}
.dark .search-wrapper {
  box-shadow: none;
}

.search-input {
  border: none;
  flex: 1;
  outline: none;
  height: 100%;
  padding: 0 20px;
  font-size: 16px;
  background-color: var(--search-area-bg);
  color: var(--main-color);
}
.search-input:placeholder {
  color: var(--main-color);
  opacity: 0.6;
}

.add-btn {
  color: #fff;
  background-color: var(--button-bg);
  padding: 0;
  border: 0;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out .3s;
}
.add-btn:hover {
  background: var(--app-container);
  color: var(--button-bg);
}

.notification-btn {
  color: var(--main-color);
  padding: 0;
  border: 0;
  background-color: transparent;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-btn {
  padding: 0;
  border: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding-left: 12px;
  border-left: 2px solid #ddd;
}
.profile-btn img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 4px;
}
.profile-btn span {
  color: var(--main-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.page-content p {
  flex: 1;
  width: 100%;
}

.app-sidebar {
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-sidebar-link {
  color: var(--main-color);
  color: var(--link-color);
  margin: 16px 0;
  transition: 0.2s;
  border-radius: 50%;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-sidebar-link:hover {
  background-color: var(--link-color-hover);
  color: var(--link-color-active);
}
.app-sidebar-link.active {
  background-color: var(--link-color-active-bg);
  color: var(--link-color-active);
}

.projects-section {
  flex: 2;
  border-radius: 32px;
  padding: 30px;
 background-color: var(--projects-section);
  height: 100%;
  display: flex;
  flex-direction: column;
  
}
.bg-none {
  background: none;
}
.projects-section-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
}
.projects-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: var(--main-color);
}
.projects-section-header p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  opacity: 0.9;
  margin: 0;
  color: var(--main-color);
  text-transform: capitalize;
}
th svg {
  vertical-align: bottom;
  margin-right: 5px;
}
.projects-section-header .time a {
  font-size: 18px;
  padding: 5px 20px;
  background: #dddfe5;
  color: var(--main-color);
}
.time.showtym {
	font-size: 12.3px;
	width: 100%;
	display: inline-block;
	line-height: 14px;
}
.date-time {
	font-size: 12.3px;
	line-height: 16px;
}
.projects-status {
  display: flex;
}
.time.app-status-top {
	margin: 0 10px 0 0;
}
.time.app-status-top a {
    font-size: 16px;
    padding: 5px 20px;
    background: #16abd9;
    color: #fff;
    margin: 0 5px 0 0;
    font-weight: bold;
    border-radius: 5px;
}
.item-status {
  display: flex;
  flex-direction: column;
  margin-right: 16px;
}




/* The Modal (background) */
.profile.modal {
	display: none;
	position: fixed;
	padding-top:70px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: transparent;
	transition: all 800ms cubic-bezier(.95,.05,.8,.04);
	box-shadow: none;
	/*animation-name: slideInDown !important;
	//-webkit-animation-duration: 1s !important;
	//animation-duration: .5s !important;
	//-webkit-animation-fill-mode: both !important;
	//animation-fill-mode: both !important;*/
}
/* Modal Content */
.profile.modal .modal-content {
	position: absolute;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	width: 15rem;
	box-shadow: 0 -1px 15px var(--color-shadow-warm),0 1px 2px var(--color-shadow-warm),0 1px 3px var(--color-shadow-warm),0 10px 9px -4px var(--color-shadow-warm),0 22px 13px -18px var(--color-shadow-warm);
	-webkit-animation-name: slideInLeft;
	-webkit-animation-duration: 0.4s;
	animation-name: slideInLeft;
	animation-duration: 0.4s;
	right: 10px;
	border: none;
}
.modal-content::before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  top: -10px;
  right: 5%;
  margin-left: -10px;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
}

.profile .modal-header h2 {
    position: relative;
    font-size: 17px;
    text-align: center;
    margin: 0;
}
.profile .modal-header h2::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	border-bottom: 1px solid var(--button-bg);
}
.profile .modal-header h2 span {
    background: #fff;
    position: relative;
    z-index: 1;
}
.profile.modal .modal-header {
    padding: 15px 20px 10px;
    justify-content: space-between !important;
    align-items: center;
}


/* The Close Button */
.profile .close {
	color: #fff;
	font-size: 17px;
	font-weight: bold;
	/*border: 1px solid #539adb;*/
	border-radius: 50%;
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 19px;
	background: #1f1c24;
}
.profile .close:hover,.profile 
.close:focus {
  /*color: #000;*/
  text-decoration: none;
  cursor: pointer;
}
.profile  .modal-body {
	padding: 0.5rem 1rem 0;
}






@keyframes warning {
  0% {
    opacity: 0;
    top: 2rem;
  }
  5% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 5.5rem;
  }
}


@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.flush--top{
  position: relative;
  font-size: 1.4rem;
  text-align: center;
}
.flush--top span {
  background: #fff;
  padding: 0 20px;
}
.flush--top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--button-bg);
  z-index: -1;

}
.list--unbulleted {
  list-style: none;
  padding: 0;
}
.messages .list__action {
  
  padding: 0.5rem !important;
  color: var(--button-bg);
  cursor:default;
}
.list__action.log_out_btn {
	border-radius: 0.4rem;
	display: block;
	cursor: pointer;
	background: #1f1c24;
	width: auto;
	color: #fff;
	padding: 5px 15px;
}
.list--unbulleted li.log_out:hover {
	background: none;
}
.list--unbulleted li {
	display: flex;
	justify-content: space-between;
	margin: 0 -1rem;
	padding: 0.5rem 1rem !important;
}
.list--unbulleted li a {
	color: var(--button-bg);
	width:100%;
}
.list--unbulleted li:hover {
	background-color: rgba(var(--rgb-ink), 0.1);
}



.badge{
  font-size: 10px;
  margin-left: 15px;
  text-transform: capitalize;
}
.odd td a, .even td a {
	color: #000;
	margin-right: 20px;
	text-decoration: underline;
}
thead {
    background: #efefef; 
}
.even {
  background: #f3f6fd85;
}
/* DataTable Css */
.pagination li {
    margin: 0 3px;
  }
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--button-bg);
    border-color: var(--button-bg);
    border-radius: 50%;
  }
  .paginate_button a {
        padding: 5px 15px; 
  }

  .table > :not(caption) > * > * {
    padding: .5rem .5rem;
      padding-right: 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 0;
    box-shadow: none;
  }
  table.dataTable.nowrap th, table.dataTable.nowrap td{
    position: relative;
  }
  #basic-data-table_wrapper .dataTables_length,  #basic-data-table_wrapper .bottom-information {
    display: none;
  }
  
  div.dataTables_wrapper div.dataTables_filter {
  margin-bottom: 5px;
}
.submit_apps .btn.btn-primary {
	font-size: 16px !important;
	padding: 7px 15px !important;
	text-transform: uppercase !important;
	background-color: #34c471 !important;
	border-color: #34c471 !important;
	border-radius: 3.25rem !important;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
	margin: 20px 0 0;
}
 .dataTables_filter .form-control.form-control-sm {
	border: 1px solid #212529;
	border-radius: 5px;
	padding: 5px 20px;
}
.dataTables_filter label {
	font-size: 18px;
	color: #343242;
	font-weight: 500 !important;
}
table.dataTable thead .sorting::before {
  display: none !important;
}
table.dataTable thead .sorting_asc::before {
  display: none !important;
}
table.dataTable thead .sorting::after{
      display: none !important;
}
table.dataTable thead .sorting_asc::after{
       display: none !important;
}
.status-badge{
    color: #fff;
    padding: 2px 15px;
    border-radius: 6px;
    font-size:14px;
    box-shadow: 0 -1px 15px var(--color-shadow-warm),0 1px 2px var(--color-shadow-warm),0 1px 3px var(--color-shadow-warm),0 10px 9px -4px var(--color-shadow-warm),0 22px 13px -18px var(--color-shadow-warm);
}
.c-new {
  background: #FF4800;
}
.c-ongoing {
  background: #0a96c1;
  
}
.c-pending {
  background: #f7ce2d;
}
.c-live {
  background: #00ae03;
}
.c-green {
  background: #1f8d00;
}
.c-red {
  background: #b72121;
}
.form-select{
    background-image: none !important;
}
.modal-dialog .dropdown.bootstrap-select.form-select {
  padding: 5px 4px;
}
/*login form*/
.btn-submit.btn-block {
  color: #fff;
  border-radius: 30px;
  outline: none;
  border: none;
  padding: 10px 60px;
  overflow: hidden;
  position: relative;
  transition: .5s ease-out;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  background-color: #a2aac0;
  opacity: 1;
}
.btn-submit.btn-block {
  color: #fff;
  border-radius: 30px;
  outline: none;
  border: none;
  padding: 10px ;
  overflow: hidden;
  position: relative;
  transition: .5s ease-out;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  background-color: #1a78cfbf;
  padding: 9px 44px;
}
.form-area h1::before {
  content: "";
  background: #1f1c24;
  height: 3px;
  width: 50%;
  position: absolute;
  bottom: 0px;
  left: 25%;
}
.form-area h1 {
  font-size: 30px;
  font-weight: bold;
  color: #1f1c24;
  display: inline-block;
  position: relative;
  padding: 0 0 15px;
}

.form-area .form-group {
  margin: 0 40px 20px;
  display: grid;
grid-template-columns: 15% 70% 15%;

border-radius: 6px;
border: 1px solid #0000001a;


}
.form-area {
    padding: 70px 30px;
}
.form-area .form-group input,.form-area .form-group textarea  {
  font-size: .9rem;
  border-radius: 20px;
  padding: 0.8rem 1rem;
  border: none; 
}
.form-group input {
  background: none;
}
.form-control:focus{
  box-shadow: none;
  background: none;
}
.login-form-outer {
  background: #fff;
  border-radius: 20px;
box-shadow: 0 -1px 15px var(--color-shadow-warm),0 1px 2px var(--color-shadow-warm),0 1px 3px var(--color-shadow-warm),0 10px 9px -4px var(--color-shadow-warm),0 22px 13px -18px var(--color-shadow-warm);
}
.app-name a img {
  width: 150px;
}
.form-area img {
  display: block;
  margin: 0 auto 10px;
}
.ticket-raise {
  background: #fff;
    padding: 10px 40px 30px 40px;
    border-radius: 15px;
    border-top: 7px solid #1a78cf;
    box-shadow: rgb(0 0 0 / 12%) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
}
.ticket-raise h2 {
  font-size: 30px;
  color: #1f1c24;
}
.ticket-raise .form-group label {
  font-size: 16px;
    margin: 0 0 6px;
    font-weight: 500;
}
.ticket-raise .form-group .form-control {
  border-radius: 0;
  border: 1px solid #939393;
  /*padding: 6px 15px;*/
  background: transparent;
  
}
.dropdown-menu.show {
	border-radius: 0;
}
.ticket-raise .form-group textarea {
  resize: none;
  height: 130px;
}
.ticket-raise h2 {
  font-size: 30px;
  font-weight: bold;
  color: #1f1c24;
  display: inline-block;
  position: relative;
  padding: 0 0 15px;
}
.ticket-raise h2::before {
      content: "";
    /* background: #6c1fed; */
    height: 2px;
    width: 70%;
    position: absolute;
    bottom: 3px;
    left: 18%;
    background: linear-gradient(0.25turn, rgb(239 239 231), rgb(255 211 233), rgba(56,2,155,0));
}
.form-group i {
  text-align: center;
  line-height: 55px;
  font-size: 1.1rem;
}
/*login for end */
.raise-form-outer .form-area {
  padding: 0;
}
.form-area .form-group textarea {
  width: 100%;
  resize: none;
  min-height: 160px;
}
.Assigned-outer h3,.form-area .form-group h3 {
  font-size: 16px;
  color: #6c757d;
  margin: 0 0 10px;
  padding-left: 15px;
}
.Assigned-outer {
  margin: 0 0 20px;
  position: relative;
}
.Assigned-outer .form-select {
  background-image: none;
  padding: 0.1rem .35rem .1rem 0.75rem;
}
.Assigned-outer .form-select {
  font-size: 14px;
  border-radius: 20px;
  border: none;
  box-shadow: 8px 3px 15px rgba(0, 0, 0, 0.11);
}
.form-area .form-group textarea:focus-visible {
  outline: none;
}
  
/** Custom Select **/
.Assigned-outer .custom-select-wrapper {
  position: relative;
  width: 100%;
}
.Assigned-outer .custom-select-wrapper select {
  display: none;
}
.Assigned-outer .custom-select-trigger {
  position: relative;
  display: block;
  
  font-weight: 100;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.Assigned-outer .custom-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 1px;
  margin-top: -3px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.35s ease-out;
  transform-origin: 50% 0;
}
.Assigned-outer .custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(-135deg) translateY(-50%);
}
.Assigned-outer .custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0%;
  right: 0;
  width: 100%;
  margin: 10px 0;
  border-radius: 5px;
  box-sizing: border-box;
  background: #fff;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  border: 0;
}
.Assigned-outer  .custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(-8px);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  z-index: 1;
}
.Assigned-outer  .option-hover:before {
  background: #f9f9f9;
}
.Assigned-outer  .custom-option {
  position: relative;
  display: block;
  padding: 0 15px;

  color: var(--main-color);
  line-height: 35px;
  cursor: pointer;
  transition: all 0.05s ease-in-out;
}
.Assigned-outer  .custom-option:first-of-type {
  border-radius: 4px 4px 0 0;

  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.Assigned-outer .custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.Assigned-outer .custom-option:hover,
.Assigned-outer  .custom-option.selection {
 color: var(--main-color);
background-color: rgba(var(--rgb-ink), 0.1);
}






/*--view_details--*/




.view_details_check input[type=checkbox] + label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
  border-bottom: 1px solid transparent;
  
}

.view_details_check input[type=checkbox] {
  display: none;
}

.view_details_check input[type=checkbox] + label:before {
  content: "\2714";
  border: 2px solid #000;
  border-radius: 0.2em;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding-left: 0.2em;
  line-height: 42px;
  padding-bottom: 1.3em;
  margin-right: 0.2em;
  vertical-align: bottom;
  font-size: 30px;
  color: transparent;
  transition: .2s;
}

.view_details_check input[type=checkbox] + label:active:before {
  transform: scale(0);
}
.view_details_check input[type="checkbox"]:checked + label::before {
    background-color: #34c471 !important;
    border-color: #34c471 !important;
    color: #fff;
}

.view_details_check input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

.view_details_check input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}


.view_details_check {
	padding: 20px;
	border-radius: 10px;
	/* background: url(../images/hero_banner.jpg); */
	width: 100%;
	position: relative;
	box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px 0px, rgb(0 0 0 / 6%) 0px 1px 2px 0px;
	/* background-position: left; */
	background-repeat: no-repeat;
	background-size: cover;
	background-image: linear-gradient( 95.2deg, rgb(233 249 245) 26.8%, rgb(250 253 255) 64% );
}



 .flush.todo__title a{
   margin: 0;
    color: #000;
    font-size: 32px;
    margin-left: 17px;
}


.todos-form__field-label strong {
	font-weight: 600;
	font-size: 17px;
	position: relative;
}
.todos-form__field-label strong span {
	font-size: 11px;
	position: absolute;
	left: 0;
	bottom: -15px;
	color: #f90707;
}

.todos-form__field-content p {
    margin: 0;
    padding: 0 0px 0px 27px;
}

.todos-form__field {
    display: flex;
    margin-top: 18px;
}

.view_details_check form {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(0.25turn, rgb(239 239 231), rgb(255 211 233), rgba(56,2,155,0));
    border-image-slice: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.todos-form__field-label {
    width: 16%;
}
.todos-form__field-content {
    width: calc(100% - 16%);
}

.view_details_head {
    display: flex;
    width:100%;
}




.three_dots_btn .btn-primary:focus {
    background-color: #34c471;
    border-color: #34c471;
}
.three_dots_btn .btn-primary {
	color: #fff;
	background-color: #34c471;
	border-color: #34c471;
	border-radius: 3.25rem;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}


.three_dots_btn_modal .modal-content {
    border-radius: 13px;
    background-image: linear-gradient( 95.2deg, rgb(233 249 245) 26.8%, rgb(250 253 255) 64% );
}

.three_dots_btn_modal .btn-primary {
    color: #fff;
    background-color: #34c471;
    border-color: #34c471;
    font-weight: 600;
    padding: 7px 50px;
    border-radius: 3.25rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.three_dots_btn_modal .btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: none;
    border-color: none;
    box-shadow: none;
}
.three_dots_btn_modal  .modal-footer {
    justify-content: center;
  }

 .three_dots_btn_modal .form-select:focus {
    border-color: #9ba6b5;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(181 192 209 / 25%);
}

.three_dots_btn_modal .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #9ba6b5;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(181 192 209 / 25%);
}

.three_dots_btn_modal .form-select {
   border-radius: 0px;
}

.three_dots_btn_modal .form-control {
	border-radius: 0px;
	padding: 9px 16px;
	margin: 0;
	background-color: transparent;
	border: 1px solid #939393;
}
.three_dots_btn_modal textarea {
	resize: none;
	height: 130px;
	margin: 15px 0 0;
}
.three_dots_btn_modal.modal-title {
    font-weight: 600;
    text-transform: uppercase;
}

.ticket-raise .form-group .form-control::placeholder {
    font-size: 14px;
    font-weight: 500;
}
.admin-status tr td span {
	top: 14px;
}


.three_dots_btn_modal .modal-footer {
    border-top:none!important; 
    padding: 10px 0px 12px;
}

.three_dots_btn_modal .modal-body {
    padding: 14px 14px 0px;
}

.todos-form__field-content a {
    color: #000;
}

/*.projects_bg {*/
/*    background: none;*/
/*}*/

.ui-datepicker .ui-datepicker-header {
    z-index: 99!important;
}
.alert-info, .alert-warning {
  position: fixed;
  right: 10px;
  bottom: 10px;
}

.alert{
  border-radius: 20px;
  box-shadow: 0 2px 5px #0003;
  display: flex;
align-items: center;
}
.alert-info {
  background: #ecfff1;
  color: #5d6672;
  border: 1px solid #3fbd63c4;
}
.alert-warning {
 background: #ffcece;
border: 1px solid #ff454585;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
  border-radius:5px;
  box-shadow: 8px 3px 15px rgba(0, 0, 0, 0.11);
  padding:0.8rem 1rem;
}

.alert .fa {
  border-radius: 50%;
  font-size: 20px;
  padding: 10px;
  margin-right: 10px;
}

.alert.alert-info .fa {
  background: #3fbd63c4;
  color: #fff;
  
}
.alert.alert-warning .fa {
  background: #ff6f6f;
color: #fff;
}
.alert-dismissible .btn-close {
    position: static;
  padding: 0;
  margin-left: 10px;
}
.admin-status .btn.btn-primary {
	color: #fff;
	border-radius: 30px;
	outline: none;
	border: none;
	overflow: hidden;
	position: relative;
	transition: .5s ease-out;
	text-decoration: none;
	text-transform: capitalize;
	font-weight: 600;
	display: block;
	background-color: #1a78cfbf;
	padding: 5px 20px;
	font-size: 14px;
}
.admin-status td input {
	/*border-radius: 6px;*/
	border: 1px solid #939393;
	padding: 7px 10px;
	background: transparent;
	font-size: 14px;
	width:100%;
}
.admin-status td input:focus-visible {
	outline: none;
}
.admin-status select {
	border-radius: 6px;
	border: 1px solid #939393;
	padding: 6px 8px;
	background: transparent;
	font-size: 14px;
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: inherit !important;
  vertical-align: middle;
}
.update-status-outer {
	margin: 30px 0 0;
}
.update-status-outer button {
	font-size: 16px;
	padding: 7px 15px;
}
.bootstrap-select.open > .dropdown-menu{
	/*display: block;*/
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}
.bootstrap-select > .dropdown-menu{
	/*display: none;*/
	opacity: 1;
	max-height: 330px !important;
  padding: 0;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: scale(.2) translateY(0px);
	-ms-transform: scale(.2) translateY(0px);
	transform: scale(.2) translateY(0px);
	-webkit-transition: all 0.2s linear, opacity 0.15s linear;
	transition: all 0.2s linear, opacity 0.15s linear;
}
.selected.active {
  background-color: rgba(var(--rgb-ink), 0.1);
  color: #000;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){
	width: 100% !important;
}
.bootstrap-select>.dropdown-toggle{
	/*! background: #EDF2F5; */
	border: 0;
	width: 100%;
	display: block;
	/*! padding: 16px 15px; */
	color: #333c44;
	font-size: 14px;

	letter-spacing: 0.030em;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;

}
.bootstrap-select>.dropdown-toggle.bs-placeholder, .bootstrap-select>.dropdown-toggle.bs-placeholder:active, .bootstrap-select>.dropdown-toggle.bs-placeholder:focus, .bootstrap-select>.dropdown-toggle.bs-placeholder:hover{
	color: #000;
}
.dropdown-toggle::after {
	content: "";
	position: absolute;
	border-top: .5em solid;
	border-right: .5em solid transparent;
	border-bottom: 0;
	border-left: .5em solid transparent;
	right: 10px;
	top: 48%;
}
.dropdown-menu{
	box-shadow: 0px 0px 15px rgba(60, 76, 150, 0.1);
	-webkit-box-shadow: 0px 0px 15px rgba(60, 76, 150, 0.1);
	-moz-box-shadow: 0px 0px 15px rgba(60, 76, 150, 0.1);
	position: absolute;
	left: 0;
	background: #fff;
	min-width: 100% !important;
	width: 100% !important;
}
.bootstrap-select .dropdown-menu a{
	display: block;
	padding: 8px 15px;
	font-size: 14px;
	letter-spacing: 0.030em;
}
.btn-light{
    background:transparent !important;
}
.open .dropdown-menu {
  display: block !important;
}
.border {
  border-radius: 6px;
  border: 1px solid #939393 !important;
}


/*--gautam--*/
p.activity {
    background: #ffff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 14px 20px 14px 20px;
    color: black;
    font-weight: 500;
    border-radius: 10px;
    position: relative;
}
.update_description {
	display: block;
	font-weight: normal;
}

.history_box {
	/* display: inline-block; */
	margin-top: 10px;
	padding: 20px 0px 6px 0;
	border-radius: 3px;
	/* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
	/* background-image: linear-gradient( 95.2deg, rgb(173 252 234 / 30%) 26.8%, rgb(192 229 246 / 35%) 64% ); */
}
.history_box h2 {
	font-size: 22px;
	margin: 0 0 15px;
}
.history_box.public-history h2 {
	font-size: 20px;
	margin: 0px 0 15px;
	font-weight: bold;
}
.history_box.public-history {
	padding-top: 0;
}
.history_box.public-history h2 {
	font-size: 20px;
	margin: 0px 0 15px;
}
.activity::last-child{
     margin-bottom:0px;
}
.flush.todo__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.flush.todo__title span {
	font-weight: 500;
	font-size: 18px;
}
.flush.todo__title .asignd-heading h3 {
	margin: 0;
	font-size: 17px;
	font-weight: bold;
}
.comment-section h2 {
	font-size: 22px;
	margin: 0;
}
.comment-section {
	margin: 10px 0 0;
}
.activity .activity_time {
	position: absolute;
	right: 10px;
	font-size: 12px;
	bottom: 5px;
	color: #d60000;
}
.modal-body.popup-modal-outer .btn.dropdown-toggle.btn-light:focus {
	outline: none !important;
	box-shadow: inherit !important;
}
.modal-body.popup-modal-outer .form-control:focus {
	box-shadow: inherit;
}
.modal-body.popup-modal-outer .dropdown-menu.show {
	inset: 3px auto auto -5px !important;
}
.submit_apps {
	position: relative;
}
.submit_apps td {
	left: 40%;
}
.show-comments {
	margin: 20px 0 20px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
	padding: 12px 10px;
	display: flex;
	align-items: center;
	position: relative;
	background: #ffff;
}
.show-comments h3 {
	font-size: 17px;
	margin: 0;
	display: flex;
	align-items: center;
}
.show-comments h3 img {
	max-width: 26px;
	margin-right: 7px;
}
.show-comments span {
	position: absolute;
	right: 10px;
	bottom: 3px;
	font-size: 12px;
	color: #d60000;
	font-weight: 500;
}
.show-comments p {
	margin: 0 0 0 10px;
	font-size: 16px;
}
.comment-box-outer textarea {
	width: 100%;
	resize: none;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	outline: none;
	margin: 0 0 10px;
	border-radius: 0;
	border: 1px solid #c8c8c8;
	padding: 6px 15px;
	height: 130px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.comment-box-outer button {
	color: #fff;
	border-radius: 3px;
	outline: none;
	border: none;
	overflow: hidden;
	position: relative;
	text-transform: uppercase;
	font-weight: 600;
	background-color: #1a78cfbf;
	padding: 10px 24px;
}
.comment-box-outer {
	margin: 15px 0 0;
}


/*Styling Selectbox*/
.dropdown.box-animated:focus-visible {
	outline: none;
}
.dropdown.box-animated {
	width: 100%;
	display: inline-block;
	transition: all .5s ease;
	position: relative;
	font-size: 14px;
	color: #474747;
	border: 1px solid #939393;
	background: transparent;
}
.dropdown.box-animated .select::after {
	content: "\f077";
	font-family: FontAwesome;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	right: 12px;
	font-size: 13px;
	top: 9px;
	transform: rotate(180deg);
	transition: all ease .6s;
}

.dropdown.box-animated.active .select:after{
   transform: rotate(0deg); 
}

.dropdown.box-animated .select {
	cursor: pointer;
	display: block;
	padding: 6px 10px;
	position: relative;
}
.dropdown.box-animated .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px
}
.dropdown.box-animated:hover {
    box-shadow: 0 0 4px rgb(204, 204, 204)
}

.dropdown.box-animated.active:hover,
.dropdown.box-animated.active {
    box-shadow: 0 0 4px rgb(204, 204, 204);
    border-radius: 2px 2px 0 0;
}
.dropdown.box-animated.active .select > i {
    transform: rotate(-90deg)
}
.dropdown.box-animated .dropdown-menu {
	position: absolute;
	background-color: #fff;
	width: 100%;
	left: 0;
	margin-top: 1px;
	box-shadow: 0 1px 2px rgb(204, 204, 204);
	border-radius: 0 1px 2px 2px;
	overflow: hidden;
	display: none;
	overflow-y: auto;
	z-index: 9;
	max-height: 250px;
	scrollbar-width: thin;
}
.dropdown.box-animated .dropdown-menu li {
    padding: 6px 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
} 
.dropdown.box-animated .dropdown-menu {
	padding: 0;
	list-style: none;
}
.dropdown.box-animated .dropdown-menu li:hover {
    background-color: #f2f2f2
}
.dropdown.box-animated .dropdown-menu li:active {
    background-color: #e2e2e2
}
.dropdown.box-animated {
	font-size: 1rem;
	color: #474747;
}








.morecontent span {
    display: none;
}
.morelink {
	display: block;
	width: 90px;
	text-decoration: underline;
	color: #212529 !important;
	font-size: 15px;
}
.des_date {
	font-size: 10px;
	color: #f90707;
	font-weight: bold;
	width: 100%;
	display: block;
}


.form-area.update_register .form-control[readonly] {
	background: transparent;
	width: 100%;
}
.form-area.update_register .form-group {
	display: block;
}
.form-area.update_register {
	background: #d3dcf8;
	border-radius: 10px;
	padding: 50px 30px;
	text-align: center;
}
.form-area.update_register .btn-submit.btn-block {
	background: #1f1c24;
}

.add-app-form-inner .form-group {
	display: block;
}
.add-app-form-inner {
	background: #d3dcf8;
	border-radius: 10px;
	text-align: center;
}
.add-app-form {
	width: 100%;
}


