@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,700;1,800&display=swap');
body {
	margin: 0;
	padding: 0;
	color: #0b385d;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
}

.scroll-touch {
  --webkit-overflow-scrolling: touch; /* Lets it scroll lazy */
}

.scroll-auto {
  -webkit-overflow-scrolling: auto; /* Stops scrolling immediately */
}



::-moz-selection { background: #f97707; }
::selection { background: #f97707; }

.bg-color{ background-color: #F0F0F0; }
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #3333336b; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.my-alert{ display: none; background:  #000; color: #FFF; position: fixed; top: 10px; right: 10px; padding:10px  20px;  border-radius: 10px; z-index: 10000; width: 300px;}
.my-alert a{color: #FFF;}

.full-width {
	width: 100%;
}
.display-none {
	display: none;
}
.df-color {
	color: #33CC7B;
}
.df-bg-color {
	background-color: #33CC7B;
}
.df-font-color {
	color: #0b385d;
}
.pd-0 {
	padding: 0!important;
}
.pd-30 {
    padding: 30px !important;
}
.mr-0 {
	margin: 0;
}
p {
	font-size: 14px;
}
.br-1 {
	margin: 5px 0 10px;
	background-color: #ccc;
	height: 1px;
}
.br-2 {
	margin: 5px 0 10px;
	background-color: #ccc;
	height: 2px;
}
.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  	position: absolute;
    top: 8px;
    left: 12px;
    height: 15px;
    width: 15px;
    background-color: transparent !important;
    border: 2px solid #FFF !important;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
  background-color: #FFF !important;
  border: 0px !important;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
  	left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
	border: solid #2196F3;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.float-right {
	float: right;
}
.float-left {
	float: left;
}
.font-bold {
	font-weight: bold;
}
.vertical-space-5 {
	display: inline-block;
	width: 100%;
	height: 5px;
}
.vertical-space-10 {
	display: inline-block;
	width: 100%;
	height: 10px;
}
.vertical-space-15 {
	display: inline-block;
	width: 100%;
	height: 15px;
}
.vertical-space-20  {
	display: inline-block;
	width: 100%;
	height: 20px;
}
.vertical-space-30 {
	display: inline-block;
	width: 100%;
	height: 30px;
}
.vertical-space-40  {
	display: inline-block;
	width: 100%;
	height: 40px;
}
.vertical-space-50 {
	display: inline-block;
	width: 100%;
	height: 50px;
}
.vertical-space-60 {
	display: inline-block;
	width: 100%;
	height: 60px;
}
.vertical-space-70 {
	display: inline-block;
	width: 100%;
	height: 70px;
}
.vertical-space-80 {
	display: inline-block;
	width: 100%;
	height: 80px;
}
.vertical-space-90 {
	display: inline-block;
	width: 100%;
	height: 90px;
}
.vertical-space-100 {
	display: inline-block;
	width: 100%;
	height: 100px;
}
.vertical-space-120 {
	display: inline-block;
	width: 100%;
	height: 120px;
}
.btn-df {
	color: #FFF;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    border: 0px;
    height: 45px;
    background-color: #00c8ff;
    padding: 12px 30px;
    border-radius: 0px;
}
.btn-df a{
	color: rgba(51,51,51,1);
	text-decoration: none;
	display: block;
}
.btn-df::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.btn-df:hover::before{
	opacity: 0;
	-webkit-transform: scale(1.2,1.2);
	transform: scale(1.2,1.2);
}
.btn-df::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	background-color: rgba(255, 0, 0, 0.25);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scale(0.5,0.5);
	transform: scale(0.5,0.5);
}
.btn-df:hover::after{
	opacity: 1 ;
	-webkit-transform: scale(1,1);
	transform: scale(1,1);
}
.btn-df:hover span {
	color: #fff !important;
    z-index: 5555555555555555;
    position: inherit;
}

.login {
    width: 100%;
    float: left;
    min-height: 100%;
    height: auto;
    background: url(../images/login-bg.jpg);
    position: absolute;
    overflow: auto;
    background-position: center;
    background-size: cover;
}
.login .login-bg {
	width: 100%;
	float: left;
	min-height: 100%;
	position: absolute;
}
.login h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 0px;
}
.login .login-box {
	width: 400px;
	margin: 0 auto;
  padding: 0px 40px;
  border-radius: 2px;
  box-shadow: 5px 5px 10px #00000060;
  background-color: hsla(0,0%,100%,.5);
}
.login .login-box p img {
	  padding: 8px;
    height: 60px;
    text-align: center;
    margin-top: 20px;
    background: #92c6ff;
    border-radius: 50%;
}
.register_form label{
 font-size: 14px;
  color: #2c2b2b;
  margin-bottom: 2px;
}
.register_form  a{
  color: #fff;
}
.login .login-box .input-box {
    width: 100%;
    float: left;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    position: relative;
    border-radius: 5px;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}
.login .login-box .btn-box {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.login .login-box .input-box:hover , .login .login-box .input-box:focus-within {
	border: 1px solid #039be5;
}
.login .login-box .input-box label {
	position: absolute;
    left: 10px;
    top: -10px;
    padding: 0 10px;
    z-index: 5555555;
    margin-bottom: 0px;
    background-color: #FFF;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}
.login .login-box .input-box .input-group input {
	height: 50px;
	border-radius: 0px;
	font-size: 14px;
	border: 0px;
	border-radius: 1px;
    box-shadow: initial;
}
.login_form label{
  font-size: 14px;
  color: #2c2b2b;
  width: 100%;
}
.login_form a{
  color: #fff;
}
.login .login-box .input-box .input-group .input-group-addon {
    padding: 12px 15px 12px 0px;
    font-size: 16px;
    background-color: #fff;
}
.login .login-box .input-box .input-group .input-group-addon img {
	width: 18px;
}
.login .login-box .input-box input:focus {
	box-shadow: inherit;
}
.login .login-box .input-box.checkbox {
	border: 0px;
}
.login .login-box .input-box.checkbox input {
    width: 16px;
    height: 16px;
    margin: 3px 0;
    margin-right: 10px;
}
.login .login-box .input-box.checkbox span {
    position: absolute;
    line-height: 22px;
    font-size: 14px;
    font-weight: bold;
}
.login .login-box .input-box.checkbox #forget-btn {
	float: right;
    background-color: transparent;
    border: 0px;
    line-height: 22px;
    padding: 0px;
    color: #fff;
}
.login .login-box .btn-box p {
	margin: 0px;
}
.login .login-box .btn-box p .btn-df, .login .login-box .forget-password .btn-box .btn-df {
    width: 180px;
    background-color: #039BE5;
    padding: 12px 50px;
    border-radius: 3px;
    overflow: hidden;
}
.btn-df, .login .login-box .forget-password .btn-box .btn-df{
	width: 100%;
}

  .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}


.slider-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

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

.switch-input:checked {
  background-color: #2196F3;
}

.switch-input:focus{
  box-shadow: 0 0 1px #2196F3;
}

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

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

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

.navbar h3.header-title {
    font-size: 18px;
    margin: 0px;
    padding-left: 14px;
}
.project_title_list {
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding: 12px 20px;
}
.project_name_title{
  border:0;
  width: 500px;
}
ul.user_profile li{
  background: #CCC;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  color: #FFF;
  background: #f6b904;
}
.navbar #sidebarCollapse {
    margin: 0px;
    left: 0px;
    z-index: 555555;
    background-color: #4f99ff;
    color: #FFF;
}
.navbar #sidebarCollapse:focus {
	box-shadow: none;
}
.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 90px;
    position: fixed;
    top: 0;
    left: 0;
   	height: 100%;
   	overflow: auto;
    z-index: 999;
    background-color: #4f99ff;
    /*background-image: linear-gradient( #041946, #103b96 );*/
    color: #dcdcdc;
    transition: all 0.3s;
}
#sidebar::-webkit-scrollbar {
  	width: 0px;
}
#sidebar.active {
    margin-left: -200px;
}

#sidebar .sidebar-header {
	height: 60px;
    padding: 15px 0;
    position: sticky;
    text-align: center;
    top: 0px;
    z-index: 555555555;
    background-color: #4f99ff;
    /*background-image: linear-gradient( #061c4a, #032263 );
    box-shadow: 0 0 11px rgba(0,0,0,.13);*/
}
#sidebar .sidebar-header a img {
	  height: 45px;
    padding: 8px;  
    text-align: center;
    background: #92c6ff;
    border-radius: 50%;
}

#sidebar ul.components {
	width: 100%;
	float: left;
    padding: 20px 0px;
}
#sidebar ul li {
    width: 100%;
    padding: 8px 20px;
    float: left;
    border-radius: 4px;
}
#sidebar ul li a.activie{
    width: 100%;
    float: left;
    background-color: #92c6ff;
}
#sidebar ul p {
    color: #999!important;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#sidebar ul li a {
   padding: 8px 10px;
   border-radius: 4px;
    font-size: 18px;
    text-align: center;
    display: block;
    color: #dcdcdc;
    text-decoration: none;
    position: relative;
   
}
#sidebar ul li ul {
	width: 100%;
	float: left;
	margin: 0px;
	padding: 0 10px;
}
#sidebar ul li ul li a {
	font-size: 12px;
}

#sidebar ul li a:hover {
    background: #92c6ff;
    
  
}

#sidebar ul li.active>a {
    color: #fff;
    background: #6d7fcc4a;
}
/*.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}*/
#content {
    width: calc(100% - 91px);
    padding: 10px;
    min-height: 100%;
    /* overflow: auto; */
    transition: all 0.3s;
    position: absolute;
    top: 0;
    left: 6%;
    background-color: #f0f6fb;
}
#content .navbar #navbarSupportedContent ul li.nav-item a {
    margin: 0px !important;
    width: 52px;
    background: transparent;
}
#content .navbar #navbarSupportedContent ul li a {
    font-size: 20px;
    color: #333;
    border-radius: 12px;
    background: transparent;
    margin: 0px;
    margin-top: -7px;
}
#content .navbar #navbarSupportedContent ul li a i {
    font-size: 18px;
    color: #333;
}
#content .navbar #navbarSupportedContent ul li a svg {
    margin-top: 0px;
    width: 20px;
    height: 20px;
    color: #333 !important;
}
#content .navbar #navbarSupportedContent ul li a svg path {
    fill: #333
}
.notification-menu i.fa.fa-bell-o{
  color: #333;
}
.no-bg{
  background:none !important;
}

.myprofile-menu .dropdown-menu{
    left: auto;
    right: 0;  
}
/*#content .navbar #navbarSupportedContent ul li a img {
	width: 40px;
    position: absolute;
    left: 15px;
    top: 0px;
}*/
#content .navbar #navbarSupportedContent ul li a.profile {
	/*padding-left: 60px;*/
	position: relative;
}
#content .content-box {
	width: 100%;
	float: left;
	position: absolute;
	top: 60px;
	min-height: calc(100% - 60px);
    background-color: #f0f6fb;
}
#content.active {
    width: 100%;
    left: 0px;
}
#task-content.active-task {
    width: calc(100% - 300px);
    margin: 0px;
}

#layout-navbar.active-task {
    width: calc(100% - 440px) !important;
    margin: 0px !important;
    top: 8px !important;
    right: 0 !important;
    left: 113px !important;
}
ul.menu-inner.py-1 {
    min-height: 597px;
}

#content.active.active-task {
	width: calc(100% - 300px);
}
#content.active .navbar {
	width: 100%;
    left: 0px;
}
#content.active-task .navbar {
	width: calc(100% - 392px);
}
#content.active.active-task .navbar {
	width: calc(100% - 300px);
}
#content .navbar ul li {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    height: 36px;
    min-width: 36px;
    float: left;
    padding: 0px;
}
#content .navbar ul li.dropdown {
	position: relative;
}
#content .navbar ul li.dropdown a {
	/*color: #FFF !important;
	padding: 7px 20px 7px 20px !important;*/
}
#content .navbar ul li.dropdown .dropdown-toggle::after {
	right: 8px;
}
#content .navbar ul li.dropdown ul {
	width: 160px;
	float: left;
	background-color: #FFF;
	box-shadow: 0px 3px 5px #00000040;
	position: absolute;
}
#content .navbar ul li.dropdown ul li {
	width: 100%;
	float: left;
	margin: 0px;
    text-align: left;
}
#content .navbar ul li.dropdown ul li a {
	width: 100%;
	float: left;
	color: #333!important;
	padding: 8px 10px !important;
	text-decoration: none;
    font-size:  14px !important; 
}
#content .navbar ul li.dropdown ul li a:hover {
	background-color: #f2f2f2;
	color: #051d4f!important;
}
.paddingright-0 { padding-right: 15px; padding-left: 0px !important; }
.paddingleft-0 { padding-left: 15px;padding-right: 0px !important; }
.padding-0{ padding: 0; }


.notify-full{ width: 100%;float: left; padding: 4px 0;  }
.notify-img {
    border-radius: 50%;
    position: absolute;
    left: 0;
    display: inline-block;
    top: 24%;
}
.notify-text{ width: 80%;float: left; text-align: left; font-size: 10px; }
.notify-text a{ padding: 0 !important; margin:0 !important; }
.task_project_name{
  /*color: #ffc107;*/

}

/*.task-menu span{ font-size: 12px;text-align: center; }*/
.task-breadcreams { list-style-type: none;  margin: 0;padding: 0;}
.task-breadcreams li {float: left; margin-right: 10px;}
.myprofile-menu a{  font-size: 20px; margin-top: 15px; top: 7px;    position: relative;}
.myprofile-menu .dropdown-toggle::after { display: none; }
.myprofile-menu .myprofile { right: 0; }
.myprofile-menu .myprofile a{ font-size: 12px;  margin-top:5px; top: auto;}
.task_user_list{ position: relative; display: inherit; }
.extra_users {
    background: #ffc107;
    color: #000;
    font-size: 12px;
    width: 20px;
    padding: 0px 3px;
    border-radius: 50%;
    position: absolute;
    left: 70px;
    top: 0px;
}
#content .navbar ul.task-menu li .btn {
	width: 100%;
	height: 36px;
    background-color: #038fde;
    color: #ffffff;
    padding: 7px 20px!important;
    font-size: 14px;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

  #content .navbar #navbarSupportedContent ul li ul li a {
       font-size: 14px;
       top: 0;
       margin-top: 0;
    }



#content .navbar ul.task-menu li .btn:hover {
	color: #FFF;
}
#content .navbar ul.task-menu li .btn.bg-danger {
	background-color: #f50f25!important;
}
#content .navbar ul li .btn:focus {
	box-shadow: none;
}
.markets .dashboard_card {
	width: 100%;
	float: left;
}
.dashboard_card .card-box {
	width: 100%;
    float: left;
    height: 120px;
    border-radius: 3px;
    background-image: linear-gradient(to right, #1765c7, #46adff );
    color: #FFF;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.dashboard_card .card-box .detail {
	padding: 20px;
}
.dashboard_card .card-box .detail h3 {
	margin-top: 0px;
	font-size: 24px;
}
.dashboard_card .card-box .detail h3 span {
	float: right;
}
.dashboard_card .card-box .detail h4 {
	font-weight: normal;
	font-size: 14px;
	margin-bottom: 0;
}
.dashboard_card .card-box h5 {
	width: 100%;
    font-size: 14px;
    padding: 10px 15px;
    margin: 0px;
    position: absolute;
    bottom: 0px;
}
.dashboard_card .card-box.account-status {
	background-image: linear-gradient(to right, #138a19, #1fce26 );
}
.dashboard_card .card-box.expiry-date {
	background-image: linear-gradient(to right, #9e5102, #ff8c16 );
}
.dashboard_card .card-box.footySlam {
	background-image: linear-gradient(to right, #082c79, #4e7cdc );
}
.form_components {
	width: 100%;
	float: left;
	background-color: #FFF;
	border-radius: 5px;
	padding: 0px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.form_components .form_detail {
	width: 100%;
	float: left;
	padding: 30px;
}
.form_components h3.hr {
	width: 100%;
	float: left;
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
    padding: 24px 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.form_components .hr {
	width: 100%;
	float: left;
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
    padding: 20px 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}
.form_components .hr h3 {

    float: left;
    font-size: 18px;
    margin: 0px;
    font-weight: bold;
    padding: 24px 0;
    padding: 4px 0
}
.form_components .hr button {
	width: auto;
    float: right;
    max-width: 40%;
    height: 30px;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 0px;
    background-color: #038fde;
} 
.form_components .input-box {
	width: 100%;
	float: left;
	padding: 0 10px;
}
.form_components .input-box label {
	margin: 0px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    text-align: right;
}
.form_components .input-box input, .form_components .input-box select {
    height: 40px;
    font-size: 13px;
    border: 1px solid #e5e5e5;
	margin-bottom: 15px;
    box-shadow: initial;
}
.form_components .input-box input:focus, .form_components .input-box select:focus, .form_components .input-box textarea:focus {
	box-shadow: initial;
	border-color: #29d6b9;
}
.form_components .input-box input::placeholder, .form_components .input-box textarea::placeholder {
  	color: #ccc;
  	opacity: 1;
}
.form_components .input-box textarea {
	height: 100px;
	font-size: 13px;
	border: 1px solid #e5e5e5;
	margin-bottom: 15px;
    box-shadow: inherit;
}
.form_components .btn-box {
	width: 100%;
	float: left;
	padding: 0 10px;
}
.form_components .btn-box .btn-df {
	height: 40px;
    border-radius: 3px;
    padding: 8px 30px;
    overflow: hidden;
    color: #ffffff;
    background-color: #038FDE;
    box-shadow: 5px 5px 10px #00000026;
}
.form_components .btn-box .btn-df:after {
	background-color: #404E67
}
.form_components .btn-box .btn-df.cancel-btn {
	background-color: transparent;
	border: 1px solid #038FDE;
	color: #038FDE;
}



.bg-danger {
    background-color: #f50f25!important;
}

 .notification.nred{ background: RED; }
 .navbar-expand-xl .navbar-nav .notification .dropdown-menu {
    position: absolute;
    min-width: 468px;
}
body[data-lang="arabic"] .dropdown-menu-end[data-bs-popper] {
    right: -400px;
    top: 65px;
    left: auto;
}

span.app-brand-logo.demo img {
    height: 44px;
    max-width: 52px;
}
.menu-vertical .app-brand {
    padding-right: 2rem !important;
    padding-left: 1rem !important;
}
body[data-lang="arabic"] .heading-line:after {
    content: "";
    height: 4px;
    width: 75px;
    background-color: #29B6F6;
    position: absolute;
    bottom: 0;
    right: 0;
    left:unset;
}
.nbadge{ 
    padding: 0px 3px;
    background: #f50505;
    border-radius: 50%;
    position: absolute;
    color: #FFFF;
    margin-left: -12px;
    line-height: 15px;
 }
 .notification-menu{
  margin-right: 5px;
 }
 .notification-menu .dropdown-menu{
    width: 400px !important;
     right: 20px;
    position: absolute;
    height: 400px;
 }

 .notification-menu li{

      margin-bottom: 10px !important;
 }

 .kip-modal{ padding:  10px; overflow-y: auto; height: calc(100% - 10px);}
  .kip-modal .close_edit {margin-bottom: 10px;  }
 .kip_list { 
    padding: 5px 0;
    width: 100%;float: left;
  }

.task-box .input { font-size: 14px; height: 40px; }
.task-header .select2{ min-width: 30%  }

.task-box .task-header ul {
	width: auto;
	float: right;
	margin-bottom: 20px;
}
.task-box .task-header ul li {
	/*width: 120px;*/
	float: left;
	padding: 0 5px;
}

.select2-container .select2-selection--multiple{
        min-height:40px !important; 
}
.select2-container--default .select2-selection--multiple{
        border: 1px solid #ced4da;
        width: 100%;
        float: left;


}
.select2-container--default .select2-selection--multiple .select2-selection__rendered{
        padding: 5px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #ced4da;
    outline: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice{
    border: none;
    background-color: none !important;
    margin-top: 5px;
}
.js-data-example-ajax-select .select2-container{ 
    width: 90% !important;
     }

.select2-results__option[aria-selected=true] {
    display: none;
}
.task-box .task-header ul li.dropdown {
	position: relative;
}
.task-box .task-header ul li .btn {
    width: 100%;
    height: 34px;
    background-color: #038FDE;
    color: #FFF;
    border: 0px;
    padding: 6px;
    font-size: 14px;
    border-radius: 5px;
}
.task-box .task-header ul li .btn:focus {
	box-shadow: none;
}
.task-box .task-header ul li.dropdown ul {
    width: 160px;
    position: absolute;
    background-color: #FFF;
    padding: 8px 0;
    z-index: 555;
    box-shadow: 0px 3px 5px #ccc;
}
.task-box .task-header ul li.dropdown ul li {
	width: 100%;
	float: left;
	padding: 0px;
}
.task-box .task-header ul li.dropdown ul li a {
	width: 100%;
    padding: 8px 10px;
    float: left;
    color: #051e52;
    text-decoration: none;
    font-size: 13px;
}
.task-box .task-header ul li.dropdown ul li a:hover {
	background-color: #e5e5e5;
}
.task-box .task-header .text-box {
    width: 100%;
    float: left;
    padding: 0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
/*.task-box .task-header .text-box .input-group-prepend {
	width: 50px;
}*/
.task-box .task-header .text-box  a {
	width: 100%;
    height: 40px;
    text-align: center;
    border: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #dedada !important;
    border-top: 1px solid #dedada !important;
        background: #4f99ff;
    color: #fff;
   /* background-color: #FFF;*/
}
.task-box .task-header .text-box  a i {
	padding: 4px;
    /*border-radius: 50%;
     border: 2px solid #FFF;*/
    /*color: #FFF;*/
    text-align: center;
    font-size: 14px;
    width: 25px;
    height: 25px;
}
.task-box .task-header .text-box  .input{
	height: 40px;
	font-size: 13px;
	/*border: 1px;*/
	border-radius: 0px;
  width: 20%;
}

.task-box .task-header .text-box .task-input {
	width: 20%;
}


.input-icon{
  width: 12%;
  float: left;
  padding: 10px;
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
}
.task-add-box { 
  font-size: 14px;
  width: 88%;
  float: left;
  padding: 10px;
  border: 0px;
   border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
 }
.task-box .task-header .text-box  input.date-input {
	width: 20%;
}
.task-box .task-header .text-box  input::placeholder {
	color: #ccc;
}
.task-box .task-header .text-box  input:focus, .task-box .task-header .text-box  button {
	box-shadow: none;
  background: #4f99ff;
  color: #fff;
}
.task-box .task-header .text-box  input.br-l-1 {
	border-left: 1px solid #e5e5e5;
}

.load_more { float: left;width: 100%; text-align: center; }
.trash_list_delete {  margin-right: 10px;  margin-left: 10px;}
.task_detail-box {
    margin:0px;
	width: 100%;
	float: left;
	padding: 5px 10px;
	background-color: #233446;
	color: #FFF;
	position: relative;
	/*overflow: hidden;*/
	border-radius: 5px;
	box-shadow: 0px 0px 5px #ccc;
	margin-bottom: 10px;
}
.task_detail-box .task-list-left {
	cursor: pointer;
}
.task_detail-box h4 {
	font-size: 13px;
    float: left;
    line-height: 15px;
    margin: 7px 0;
    padding-left: 6px;
}
.user-id-img {
    border-radius: 50%;
    width: 30px;
    height: 30px !important;
}
.user-img-text {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f9f9f9;
    color: #061c4b;
    padding: 2px 0;
    text-align: center;
    font-size: 18px;
    /* margin-right: 5px; */
}

.task_detail-box .trash-btn ,.star-btn,.more_task,.task_project_name i{
	color: #FFF;
    font-size: 21px;
}
input.done_status {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 10px !important;
    align-self: center;
}
input.done_status.form-check-input:checked[type=checkbox] {
    background-color: transparent !important;
    border-color: white;
    font-size: 16px;
}

.trash-btn:hover {
	color: #f50f25;
}
.star-btn {
    color: #FFF;
}
.star-btn:hover {
	color: #FFD200;
}
.star-btn.active {
    color: #ffd200!important;
}
.more_task{
    color: #FFF; 
}
.task_detail-box .btn.star-btn.active i {
    position: relative;
    z-index: 555;
    color: #FFD200;
    font-size: 18px;
}
.task_detail-box .btn.star-btn:hover i {
	color: #FFD200;
}
.dropdown-right-click{
    width: 180px;
    float: left;
    left: auto;
    right: 0;
}
.dropdown-right-click li{
    padding: 8px;
    border-bottom: 1px dashed #CCC;
    cursor: pointer;
}


.dropdown-right-click li a {
    padding:10px 0;
    color: #038fde;
    font-size: 14px;
}

.dropdown-right-click li a:hover{
  
    color: #000;
    text-decoration: none;
}
.right-click-drop-ui {
    display: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
/*
.task-box .task-details .detail-box button.star-btn.active:before {
	content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 36px;
    z-index: 1;
    opacity: 1;
    background-color: #D74E48;
    transform: skew(0deg, -30deg);
}
.task-box .task-details .detail-box button.star-btn.active:after {
	content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 36px;
    z-index: 1;
    opacity: 1;
    background-color: #D74E48;
    transform: skew(0deg, 30deg);
}*/
.task_detail-box  .task-list-left {
    font-size: 13px;
}
.task-box .task-details .task-details-hr {
	float: left;
    font-size: 14px;
    padding: 7px 15px;
    background-color: #051d4e;
    color: #FFF;
    border-radius: 3px;
    cursor: pointer;
    margin: 10px 0;
}
.task_pending {
    background-color: #038fde !important;
}
.task_completed {
    background-color: #2fc560 !important;
}
.task_approved {
	background-color: #079646 !important;
}
.task_cancel {
	background-color: #c70d04 !important;
}
.task_transfer {
	background-color: #f9bd36 !important;
}
.task_stopped {
	background-color: #f1534c !important;
}

.approved_status {
    width: 15px;
    margin: 5px;
}
.textarea {
    box-sizing: border-box;
    min-height: 36px !important;
    overflow-x: hidden;
    overflow-y: hidden;
    resize: none;
    padding: 5px 10px;
}
.priority_normal{  border-left: 8px solid #d2d3d4 !important; }
.priority_high{  border-left: 8px solid #ff2222 !important; }
.priority_medium{ border-left: 8px solid #f15e08 !important;  }

.task-filter-details {
    display: none;
    width: 0px;
    float: right;
    height: 100%;
    background-color: #fff;
    position: fixed;
    right: 0px;
    overflow: hidden;
    box-shadow: -1px -1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px;
    overflow-y: auto;
    top: 0px;
}
.filter-title{
  margin-bottom: 20px;
}
.input-container {
  box-shadow: 0px 0px 19px 0px rgba(0,0,0,.1);
  display: flex;
  
  width: 100%;
  margin-bottom: 15px;
}
.attachment-title{

}
ul.dropdown-menu.attachment-upload.show{
      position: absolute;
      box-shadow: 18px 20px 38px 27px rgba(19,27,41,0.1);
    border:none;
    transform: translate3d(-2px, 90px, 0px);
    top: 0px;
    width: 95%;
    left: 0px !important;
    box-shadow: 0px 0px 19px 0px rgba(0,0,0,.1);
    padding: 0px;
    will-change: transform;
}
.icon {
  padding: 16px;
    background: #fff;
    color: black;
    min-width: 0px;
    text-align: center;;
}
.input-container .form-control:focus {
  outline: none;

}
.task-she a:hover{
  text-decoration: none;
}
.tag-box .select2-container--default .select2-selection--multiple{
  border:none !important;
}

.task-filter-details .form-control{
      background: #fff;
    border-radius: 2px;
    border: none;
    padding: 0px;
    height: 46px;
}
#task-filter-details.active-task {
    width: 300px;
    display: block;
    z-index: 111;
}
.applied_filter{ margin-top:10px; margin-bottom:10px; }
.fliter_search { list-style-type: none; margin:0; padding: 0;  }
.task-filter-details .select2 { width: 100% !important; }
.fliter_search a:hover{
  text-decoration: none;
}
.fliter_search a{
  color: #3a3a3a;
}
.task-name{
  /*background: #f3f6f9;*/
    padding: 10px;
    border-radius: 3px;
}
.tag-box .select2-container--default .select2-selection--multiple{
   /*background: #F3F6F9;
   height: 46px;
   border-radius: 2px;
   border:none;*/
}
.task-name label{
 /* color: #488fde;*/
  font-size: 18px;
}

.tmrw-btn{
    border: 1px solid #488fde;
    padding: 5px 4px;
    font-size: 10px;
    color: #5f5f5f;
    margin-right: 4px;
    border-radius: 30px
}
table i {
    min-width: 10px;
    max-width: 10px;
    font-size: 14px !important;
}
.tmrw-btn.active{
  background:#488fde;
  color: #FFF;
}

.task-she{
  border-bottom: 1px dotted #ccc;
  line-height: 45px;
  margin-bottom: 20px;
}
.task-contend-details {
    display: none;
    width: 0px;
    float: right;
    height: 100%;
    background-color: #fff;
    position: fixed;
    right: 0px;
    top: 0;
    overflow: hidden;
    box-shadow: -1px -1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.daterangepicker{ z-index: 3000; }
#task-contend-details.active-task {
	width: 300px;
     display: block;
}
.task-contend-details .task-contend-scroll {
	height: calc(100% - 50px);
	overflow: auto;
}
.task-contend-details .task-contend-scroll::-webkit-scrollbar {
  width: 6px;
}
.task-contend-details .task-contend-scroll::-webkit-scrollbar-track {
  background: transparent; 
  padding: 2px;
}
.task-contend-details .task-contend-scroll::-webkit-scrollbar-thumb {
  background: transparent;  
  border-radius: 5px;
}
.task-contend-details .task-contend-scroll:hover::-webkit-scrollbar-thumb {
	background-color: #3333336b;
}
.task-contend-details .detail-box {
	width: 100%;
    float: left;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.task-contend-details .checkmark {
	top: 3px;
	left: 0px;
	border-color: #ccc!important;
}
.task-contend-details .container-checkbox input:checked ~ .checkmark {
	background-color: #2196f3 !important;
	border: 0px !important;
}
.task-contend-details .container-checkbox .checkmark:after {
	border-color: #FFF;
}
.task-contend-details label.container-checkbox {
	width: calc(100% - 35px);
	padding-left: 20px;
	padding-right: 0px;
	font-size: 13px;
	position: relative;
}
.task-contend-details .detail-box .btn {
    width: 30px;
    float: right;
    color: #777;
    padding: 2px 0;
}
.task-contend-details .add-details {
	width: 100%;
	float: left;
	padding: 15px;
}
.task-contend-details .add-details ul {
	width: 100%;
	float: left;
	margin: 0px;
}
.task-contend-details label{
  margin-bottom: 0px;
}
.task-contend-details .sub_list_list {
   background: #e6e6e6 ;
  margin-bottom: 10px !important;
      padding: 1px 4px;
      border-radius: 2px;
}
.task-contend-details .add-details ul li {
	width: 100%;
	float: left;
	margin-bottom: 15px;
 
}
.task-contend-details .add-details ul li.border-line
{
      border-bottom: 1px solid #f2efef;
    padding-bottom: 10px;
}
.task-contend-details .add-details ul li .input-group {
	border: 0px;
	border-radius: 0px;
	border-bottom: 1px solid #e5e5e5;
}
.task-contend-details .add-details ul li .input-group .input-group-text {
    border: 0px;
    padding: 5px;
    height: 35px;
    font-size: 14px;
    border-radius: 0px;
    background-color: initial;
}
.task-contend-details .add-details ul li .input-group input, .task-contend-details .add-details ul li .input-group textarea {
	border: 0px;
    border-radius: 0px;
    font-size: 13px;
}
.task-contend-details .add-details ul li .input-group input:focus, .task-contend-details .add-details ul li .input-group textarea:focus {
	box-shadow: none;
}
.task-contend-details .add-details ul li ul {
	margin-top: 10px;
	padding: 0 10px;
}
.add-details ul li label{
  color: BLUE;
  font-size: 12px;
}
.task-contend-details .add-details ul li ul li {
	width: 100%;
	float: left;
	position: relative;
	margin: 0px;
}
.task-contend-details .add-details ul li ul li .container-checkbox {
	width: 100%;
	margin: 0px;
	font-size: 12px;
	line-height: 20px;
	padding: 10px 0px 10px 20px;
}
.task-contend-details .add-details ul li ul li label .delete {
	float: right;
	text-decoration: none;
	font-size: 16px;
	color: #333;
}
.task-contend-details .add-details ul li ul li label .delete:hover {
	color: #f50f25;
}
.task-contend-details .add-details ul li ul li .checkmark  {
	top: 12px;
	left: 0px;
}
.task-contend-details .add-details ul li ul li.active .container-checkbox {
	text-decoration: line-through;
}
.sub_list_list.active .subtask_task {
  text-decoration: line-through;
}
.task-contend-details .add-details ul li .comment {
	width: 100%;
	float: left;
	padding: 10px 0;
	border-bottom: 1px solid #e5e5e5;
}

.task-contend-details .add-details .comments_data {
    float: left;
    max-height: 200px;
    overflow: auto;
    width: 100%;
}
#remind_me{
    padding: 8px; 
}
.task_list_input{  padding: 8px;  font-size: 12px;}
.task-contend-details .add-details ul li .comment h3 {
	font-size: 20px;
}
.task-contend-details .add-details ul li .comment .comment-box {
	width: 100%;
	float: left;
	padding: 5px 0;
}
.task-contend-details .add-details ul li .comment .comment-box .img-box {
	width: 30px;
	float: left;
}
.task-contend-details .user-img-text {
	background-color: #ffeb77;
}
.task-contend-details .add-details ul li .comment .comment-box .comment-details {
	width: calc(100% - 50px);
	float: left;
	padding: 0 5px;
	color: #061d4d;
}
.task-contend-details .add-details ul li .comment .comment-box .comment-details h5 {
	font-size: 13px;
	margin-bottom: 2px;
	color: #051d50
}
.task-contend-details .add-details ul li .comment .comment-box .comment-details h5 span {
	color: #7c7c7c;	
}
.task-contend-details .add-details ul li .comment .comment-box .comment-details p {
	font-size: 12px;
	margin-bottom: 0px;
}
.task-contend-details .comment-box a.delete {
	width: 20px;
	padding: 0px;
	text-align: center;
    float: left;
    font-size: 16px;
    color: #333;
}
.task-contend-details .add-details ul li .comment .comment-box a.delete:hover {
	color: #f50f25;
}
.task-contend-details .add-details ul li .attach-file {
	width: 100%;
    float: left;
    margin-top: 10px;
    background-color: #dbecff;
    border-radius: 5px;
    overflow: hidden;
}
.task-contend-details .add-details ul li .attach-file .file-type {
	max-height: 25%;
    float: left;
    font-size: 14px;
    padding: 12px 8px;
    color: #FFF;
    background-color: #038fde;
}
.task-contend-details .add-details ul li .attach-file .file-type h4 {
	font-size: 14px;
	margin: 0px;
}
.task-contend-details .add-details ul li .attach-file .file-name {
	max-width: 67%;
	float: left;
	padding: 5px 10px; 
}
.task-contend-details .add-details ul li .attach-file .file-name h4 {
	font-size: 13px;
    white-space: nowrap;
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.task-contend-details .add-details ul li .attach-file .file-name p {
	font-size: 10px;
	margin: 0px;
}
.task-contend-details .add-details ul li .attach-file .delete {
    width: 8%;
    float: right;
    padding: 8px 0px;
}
.task-contend-details .add-details ul li .attach-file .delete a {
	font-size: 16px;
	color: #aaa;
	text-decoration: none;
}
.task-contend-details .add-details ul li .attach-file .delete a:hover {
	color: #333;
}
.task-contend-details .add-comment {
    width: 100%;
    float: left;
    bottom: 0px;
    background-color: #038fde;
    position: absolute;
    height: 50px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    color:#FFF
}
.task-contend-details .add-comment .add-comment-box {
    width: 100%;
    float: left;
    bottom: 0px;
    padding: 15px;
    right: 0px;
    position: absolute;
}
.task-contend-details .add-comment input {
	width: 100%;
	float: left;
	margin-bottom: 10px;
	padding: 5px 10px;
	height: 36px;
	border: 1px solid #e5e5e5;
}
.task-contend-details .top-edit{
    width: 100%;
    float: left;
    margin: 0px;
}
.task-contend-details .top-edit ul {
	width: 100%;
	float: left;
	margin: 0px;
}
.task-contend-details .top-edit ul li.btn-box {
	width: 30px;
	height: 30px;
}
.task-contend-details .top-edit ul li.btn-box .btn {
    width: 100%;
    padding: 5px;
    height: 100%;
    line-height: 16px;
    color: #FFF
}
.task-contend-details .top-edit ul li.btn-box:first-child .btn {
	border: 1px solid #e5e5e5;
}
.task-contend-details .top-edit ul li.text {
	width: calc(100% - 60px);
}
.task-contend-details .top-edit ul li.text p {
	text-align: center;
	line-height: 30px;
	margin: 0px;
}
.sub_task_list{
    max-height: 200px;
    overflow-y: auto;
}
.subtask_edit_input{ display: none; }
.subtask_drag{ padding: 0 5px}
.subtask_drag i{ margin-right: 2px; }
.dropdown-menu.show{ z-index: 1000000; }
.projects {
	width: 100%;
	float: left;
	padding: 20px;
}
.projects h3.hr {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}
.create_project{ width: 100%; max-height: 316px; overflow-y: auto; }
.project_create{ background: #FFF; padding: 20px 30px; }
.add-project {
	width: 100%;
	float: left;
	height: 180px;
	background-color: #FFF;
	border-radius: 3px;
	padding: 20px;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}
.add-project a {
	width: 100%;
	float: left;
	padding: 30px 0;
	margin: 0px;
	font-size: 20px;
	text-align: center; 
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.add-project:hover a {
	padding: 20px 0 40px;
}
.add-project a i {
	padding: 15px 18px;
    border: 1px dashed #ccc;
    border-radius: 50%;
}
.add-project h5 {
	text-align: center;
    font-size: 14px;
    font-weight: bold;
}


.project-view-box p{ margin-bottom: 8px; }
.pclose-ico{ margin-top:10px; }
.project-view-box a:hover {
	color: #aaa;
}
.project-view-box h5 {
	font-size: 14px;
    width: 100%;
    float: left;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.project-view-box h4{
    font-size: 18px;
}
.project-view-box h6 {
    font-size: 12px;
    margin: 0px;
    color: #000;
}

.projects-list-contend {
	width: 220px;
	height: 100%;
	margin: 0 10px;
	float: left;
}
a#sidebar-arrow:hover {
    text-decoration: none;
}
.project-list-box {
	width: 100%;
    float: left;
    border-radius: 3px;
    /* margin-bottom: 20px; */
    background-color: #FFF;
    box-shadow: 0px 0px 5px #ccc;
}
ul.list-unstyled.project-list-btn-box li {
    list-style: none !important;
}
.project-list-title{
    padding: 10px;
}
.project-list-box .hr {
    width: 100%;
    float: left;
    /*padding: 5px 5px 5px 10px;*/
    margin: 0px;
}

.project-list-box .hr input {
    border: none;
}
.project-list-box .hr span {
    padding: 6px 0;
    float: left;
    font-size: 16px;
    font-weight: bold;
}
.project-list-box .hr a {
	float: right;
    padding: 1px 7px;
    color: #0b385d;
    border-radius: 3px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 16px;
    margin-top: 5px;
}
.project-list-box .hr a:hover {
	background-color: #f9f9f9;
    box-shadow: 2px 2px 7px #777;
}
.project-list-detail {
	width: 100%;
	float: left;
    min-height: 20px;
    max-height: 500px;
    padding: 10px;
    overflow: auto;
}
.user-my-icon{  margin-right: 10px; }
.project-list-detail .project-list-detail-box {
	width: 100%;
    float: left;
    background-color: #FFF;
    border: 1px solid #e5e5e5;
    padding: 5px 5px 5px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    /* -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; */
    cursor: all-scroll;
}
.project-list-detail .project-list-detail-box:hover {
	box-shadow: 5px 5px 10px #ccc;
}
.project-list-detail .project-list-detail-box .left {
	width: 100%;
}
.project-list-detail .project-list-detail-box:hover .left {
	width: calc(100%);
	float: left;
}
.project-list-detail h5 {
	width: 100%;
	padding: 10px 0;
    float: left;
    margin: 0px;
    font-size: 14px;

}

.dropdown-menu {
  background: #fff;
    border-radius: 3px;
    box-shadow: 0 8px 16px -4px rgba(9,30,66,.25), 0 0 0 1px rgba(9,30,66,.08);
}
.project-list-model .project-list-add-status li  .upload-files{
  padding:5px 10px;

}

 .filewrap{
    position:relative;
}
/*.upload_img{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    cursor:pointer;
}*/
.project-list-model .project-list-add-status li  ul li a{
  color: #000;
    background: #FFF;
    text-align: left;
    font-size: 14px;
    padding: 5px 10px;
 
}
.project-list-detail .left .status {
	width: 60px;
	height: 8px;
	border-radius: 5px;
	background-color: #e5e5e5;
	margin: 10px 0;
	margin-bottom: 5px;
}
.project-list-detail .left p {
	margin: 0px;
	color: #8c8c8c;
}
p .b_grid_left  {
	font-size: 10px;
    padding: 2px 10px;
    float:left;
}

.project-list-detail .left p .gird_sub_task  {
  font-size: 12px;
    padding: 2px 10px;
    float:left;
}

.project-list-detail .project-list-detail-box .dropdown-icon {
	width: 30px;
	float: right;
    font-size: 12px;
    border-radius: 3px;
    padding: 4px 6px;
    text-align: center;
}
.project-list-detail .project-list-detail-box:hover .dropdown-icon {
	display: block;
	background-color: #e5e5e5;
	color: #aaa;
}
/*.project-list-detail textarea {
	border: 0px;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    box-shadow: initial;
    margin-bottom: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}*/
.picker-dialog{
  z-index: 100000  !important;
}
.project-list-detail textarea:hover, .project-list-detail textarea:focus {
	border: 1px solid #CCC;
}
.project-list-detail .project-list-btn-box {
	width: 100%;
	float: left;
	margin-bottom: 0px;
    LINE-HEIGHT: 14px;
}
.project-list-btn-box li {
	float: left;
}
.project-list-btn-box input {
	padding: 5px 20px;
    border: 0px;
    border-radius: 3px;
    color: #FFF;
    background-color: #10b546;
    margin-right: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 12px;
}
.project-list-btn-box input:hover {
	box-shadow: 5px 5px 10px #ccc;
}
.add_task_form .form-control{ font-size: 12px; height: 40px ;margin-bottom:5px; border-radius: 0; }
.add_task_form .select2-container{ width: 100% !important; margin-bottom: 5px; }
.add_task_form  .select2-container--default .select2-selection--multiple .select2-selection__rendered{ padding: 5px 10px;

    font-size: 12px; }


.task_submit:focus {
  background-color: #038fde;
  color: #FFF;

}



.project-list-btn-box li a.close {
    float: left;
    font-size: 17px;
    border-radius: 3px;
    color: #0b385d;
    padding: 5px;
}

.project-list-btn-box li a.close:hover {
	color: #777;
	background-color: #e5e5e5;
}
a.project-add-list {
	width: 100%;
	float: left;
	padding: 5px;
	text-align: center;
    background-color: #077ec1;
	border-radius: 3px;
	color: #FFF;
	text-decoration: none;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
a.project-add-list:hover {
	color: #FFF;
    box-shadow: 5px 5px 10px #ccc;
}
.add-another-project-list {
	width: 100%;
	float: left;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
	border-radius: 3px;
	overflow: hidden;
}
.add-another-project-list:hover {
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25)
}
.card-block {
    /* min-height: 220px; */
    background-color: transparent;
    border: 0px;
}
#content::-webkit-scrollbar {
  height: 12px;
}
.project-list-detail::-webkit-scrollbar{
    width: 16px;
}

.project-list-model .modal-dialog {
    max-width: 60%;
    color: #0b385d;
}
.project-list-model .modal-content {
    border: 0px;
}
.project-list-model .modal-header {
    padding: 15px 30px;
    border: 0px;
}
.project-list-model .hr-left h4 {
    font-size: 14px;
    font-weight: bold;
}
.project-list-model .hr-left h4 i, .project-list-model .description-box h4 i {
    width: 20px;
    font-size: 14px;
}
.project-list-model .hr-left h5 {
    font-size: 14px;
    padding-left: 40px;
    margin: 0px;
}


.project-list-model .modal-body {
    padding: 15px 30px;
}
.project-list-model .description-box {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}
.project-list-model .description-box h4 {
     font-size: 14px;
    font-weight: bold;
}
.project-list-model .description-box textarea {
    width: calc(100%);
    float: right;
    margin-bottom: 10px;
    font-size: 14px;

}
.project-list-model .description-box textarea:hover {
    box-shadow: 5px 5px 10px #ccc;
}
.project-list-model .user-img-text {
    box-shadow: 3px 2px 5px #00000030;
    background-color: #e5e5e5;
}
.project-list-model .project-list-btn-box {
    width: calc(100% - 40px);
    float: right;
}
.project-list-model .project-list-btn-box input {
    height: 36px;
    padding: 8px 15px;
}
.project-list-model .project-list-btn-box a.close {
    padding: 8px 10px;
    line-height: 20px;
    font-size: 20px;
}
.project-list-model .project-list-btn-box li.formatting-help {
    float: right;
}
.project-list-model li.formatting-help a {
    float: left;
    padding: 7px 15px;
    background-color: #f5f5f5;
    text-decoration: none;
    color: #aaa;
    border-radius: 3px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.project-list-model li.formatting-help a:hover, .project-list-model .project-list-add-status li a:hover {
    box-shadow: 5px 5px 10px #ccc;
    color: #0b385d;
}
.project-list-model li.checkbox-input {
    float: right;
    position: relative;
    padding: 7px 0;
}
.project-list-model li.checkbox-input .container-checkbox {
    padding-left: 25px;
    margin: 0px;
}
.project-list-model li.checkbox-input input {
    margin: 0px;
    height: inherit;
    padding: initial;
}
.project-list-model li.checkbox-input .checkmark {
    top: 11px;
    left: 0px;
    border-color: #ccc!important;
}
.project-list-model li.checkbox-input input:checked ~ .checkmark {
    background-color: #2196f3 !important;
}
.project-list-model li.checkbox-input input:checked ~ .checkmark:after {
    border-color: #FFF;
}
.project-list-model .project-list-add-status {
    width: 100%;
    float: left;
    margin: 0px;
}
.project-list-model .project-list-add-status h5 {
    width: 100%;
    float: left;
    margin: 10px 0;
    font-size: 14px;
    font-weight: bold;
}
.project-list-model .project-list-add-status li {
    width: 100%;
    float: left;
    margin-bottom: 8px;

}
.project-list-model .project-list-add-status li a {
    width: 100%;
    float: left;
    padding: 8px 10px;
        background-color: rgb(0 0 0 / 7%);
    color: #0b385d;
    border-radius: 3px;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.tag_list {max-height: 220px;overflow-y: auto; margin:10px 0px; background: #f8f8f8; }
.tag_list ul{ list-style-type: none; margin:0; padding: 0; }
.tag_list ul li {width: 100%; float: left;  padding: 8px 10px;  border-bottom: 1px dashed #CCC;  }
.tag_list ul li a{ padding: 5px 0; }
.template_selection{ width: 120px; float: left;  margin-right: 30px; }
.template_selection .template { width: 100%;float: left; border: 1px solid #CCC;  height: 120px; border-radius: 10px; cursor: pointer; }
.template_selection  p{ 
    font-size: 12px;
    padding: 5px 0;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    margin-bottom: 5px;
  }
.plus_create{  font-size: 24px; }
.template_default {     border-raddisplay: inline-block;
    width: 180px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;ius: 20px; border: 1px dashed #CCC !important;
height: 100%;
width: 100%;
align-items: center;
background: #fff;
border: 2px dashed;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #9ca6af;
display: flex;
fill: #9ca6af;
justify-content: center;
position: relative; }

.template_selection .template:hover{
    background:  #CCC;
}

.template.active{background:  #CCC;     border: 5px solid #a8aaab;}
.template_board{ background : #CCC; margin-top: 20px !important;  border: 1px solid #CCC; padding: 10px !important;}
.template_board .col-form-label { text-align: right; }
.widget-modal{  padding: 10px 0; margin-bottom: 10px;}
.widget-modal .extra-widget{     
    font-weight: 500;
    padding: 10px;
    border: 1px dashed #CCC;
    margin-right: 10px;
    border-radius: 50%;
    font-size: 14px;}


.ul-list-modal{ 
    list-style-type: none;
    margin: 0;
    padding: 0;


}

.project-view-box {
    width: 100%;
    float: left;
    height: auto;
    padding: 12px 15px;
    margin-bottom: 15px;
    margin-top: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    background-color: #FFF;
    position: relative;
    text-align: left;
    text-align: center;
    border: 1px solid #e8e4e4;
    
}
.project-view-box:hover{
  background:  #CCC;
  cursor: pointer;
}
.project-view-box-a1{
    background-color: #4782a5  !important;
}
.template-color{ margin-top:10px; }
.template-color-id { float: left;width: 50px; height: 50px; border: 1px solid #CCC;  margin-right: 10px;  border-radius: 5px; cursor: pointer }
.template-color-id.active{border: 5px solid #a8aaab;}
.project-view-box-a2{
    background-color: #a080b1  !important;
}
.project-view-box-a3{
    background-color: #758e6c  !important;
}
.project-view-box-a4{
    background-color: #efb058 !important;
}
.project-view-box-a5{
    background-color: #ec8b78  !important;
}
.project-view-box-a6{
    background-color: #AE4D7B  !important;
}

.project-view-box .img-box {
    width: 100%;
    float: left;
    height: 100px;
    padding: 30px 0;
    text-align: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.project-view-box:hover .img-box {
    padding: 20px;
}
.project-view-box .img-box img {
    height: 100%;
}
.letter-one {
    padding: 10px 20px;
    font-size: 24px;
    background: #007bff;
    color: #FFF;
    border-radius: 50%;
}

/*.close_icon a{
    padding: 5px;
    background: #e0e0e0;
    border-radius: 5px;
    margin-right: 6px;
    float: left;
    color: #042b40;
    font-size: 15px;
}*/

.letter-one a{
  color: #FFF !important;
} 
/*.project-view-box .close_icon {
    position: absolute;
    top: 5px;
    left: 10px;
    right: auto;
    color: #e5e5e5;
    text-align: right;
}
*/
.ul-list-modal li ul{
    overflow-y: auto;
    max-height: 350px;
    z-index: 10000px;
    min-width: 250px;
    padding:0  5px !important;
}

.ul-list-modal li ul li, .task_members li{
    width: 100%;
    padding: 6px 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.ul-list-modal li ul .member-list{
   
    cursor: pointer;
}
.ul-list-modal li ul .mltitle{
    border-bottom: 1px solid #CCC;
    text-align: center;
}
/*.status_class{ color: #FFF; }*/
.member-list.hidden { display: none; }
.ul-list-modal li ul .member-list:last-child{
    border-bottom: 0px;
}
.ul-list-modal li ul .member-list.active, .member-list.active{
    background:  #eaeaea;
}

.dropdown-toggle::after{
    display: none !important;
}
.ul-list-modal li{
    float: left;
}
.search_fliter{
    top: 0;
    position: fixed;
    right: 0;
    background: #FFF;
    padding: 10px;
    z-index: 1000;
    width: 300px;
}
.activity_main{
    top: 0;
    position: fixed;
    right: 0;
    background: #FFF;
    background-color: #FFF;
    box-shadow: 0px 10px 10px #00000030;
    border: 1px solid #f8f8f8;
    padding: 10px;
    z-index: 1000;
    width: 300px;
    bottom: 0px;
    overflow-y: auto;
    min-height: 10px;
}


.sub_list_all .tsk_round {
    background: #8f8f92 !important;
    margin-top: 4px;
}


.sub_list_all{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.sub_list_all .sub_list_list{
    padding: 5px;
    background: #CCC;
    margin-bottom: 10px;
    border-radius: 5px;
    width: 100%;
    float: left;
}

.sub_list_all .tsk_round{
    background: #8f8f92 !important;
    margin-top: 4px;
}
.sub_list_all .sub_list_list label{
    margin-bottom: 0px !important;
}
.sub_list_all .sub_list_list input{
    margin-right: 5px !important;
    margin-top: 2px;
}

.sub_list .tsk_round {
    background: #8f8f92 !important;
    margin-top: 4px;
}

.tsk_round {
    padding: 5px 10px;
    background: #FFF;
    border-radius: 50%;
    color: #000;
    margin-left: 2px;
    background: #CCC;
    float: left;
    cursor: pointer;
}
.user_drop_now .dropdown-menu{ 
    margin: 0;
    padding: 0;

 }
 .dropdown-menu li img,  .dropdown-menu li span{ margin-left: 0; margin-right: 5px; }
 .dropdown-menu li .tsk_round{ padding: 2px 10px; }
  .dropdown-menu li .user-id-img { width: 28px; height: 28px; }
.sub_list{
    list-style-type: none;
    margin: 0;
    padding: 0;
        max-height: 200px;
    overflow: auto;
}
.sub_tash_list  {
  padding-right: 10px;
}
.sub_list .sub_list_list{
    padding: 5px 10px;
    background: #e6e6e6;
    margin-bottom: 10px;
    border-radius: 5px;
    width: 100%;
    float: left;
        border-left: 5px solid #6d6b6b;
}
.subtask_task{ border :none; background: #e6e6e6;   }
.subtask_task:focus{ border:none;   outline: none; border-bottom: 1px solid #FFF;}

.sub_list .tsk_round{
    background: #8f8f92 !important;
    margin-top: 4px;
}
.sub_list .sub_list_list label{
    margin-bottom: 0px !important;
}
.sub_list .sub_list_list input{
    margin-right: 5px !important;
    margin-top: 2px;
}
.search_fliter .select2 {
    width: 100% !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
     border :0; 
    background: #FFF;

    }

.add_kpi { width: 100%;margin: 10px 0; }
.padding-0{ padding: 0 }
.margin-0  { margin:0; }
.grid_task_kpi .kpi_min_data{ margin-top:20px; width: 100%; }
.grid-check-box{ float: left;
    margin-right: 8px;
    margin-top: 8px; }
.add_kpi .input{ height: 43px; }
.add_kpi .btn { border:1px solid #CCC; }
#kpi-modal .modal-header .close{ margin: 0rem -1rem -1rem auto; }
.kpi { float: left;  width: 100%;  background-color: #038fde  !important;  color: #FFF; border-radius: 5px !important; margin-bottom: 10px; cursor: pointer;    box-shadow: 0px 0px 5px #ccc; }
.kpi .kpi-span{ float: left; padding: 10px 15px ;  height:100%;text-align: center; }
.kpi-bottom{  border-top: 1px solid #FFF; display: block !important; }
.kpi-span-padding{ padding: 0px 10px !important; }
.kpi-span-float-r{ float: right;  height:100%; }
.kpi-br{border-right: 1px solid #FFF;}
.kpi-bl{border-left: 1px solid #FFF;}
.kpi-task{ text-overflow: ellipsis;white-space: nowrap;overflow: hidden;  display: block;box-sizing:border-box; width: 50%;text-align: left !important;}
.kpi-span-a{   font-size: 12px; }
.kpitsk_round{  padding: 5px 8px; float: left; background: #f5f6ff; margin-right: 10px; border-radius: 50%;margin-top:5px; color: #6f7070; }
.kpitsk_round:last-child {margin-right:0px;   }
.dd3-content.show_task {
    background: #0072ff;
    color: white;
    font-weight: bold;
}
.delete_goal {
    color: red;
    font-size: 20px;
}
.project_list li {
    color: #333;
    border-bottom-style: inset;
    padding-top: 4px;
    list-style: decimal;
}

.kpi_task_lists{
width: 100%; float: left;
padding: 5px; background:  #FFF;
margin-bottom: 5px;
border-radius: 5px;
}
.kpi_task_lists span{ padding: 5px;  }



.project_list li .float-right .right-fields{
   margin: 0px 5px;
   float: left;
}
.overlay-spinner{   
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(359deg); 
    }
}
.is-hide{
    display:none;
}

.goal-procees {
  width: 250px;
  margin-right: 5px;
  background: #86898c;
}

.goal .task_detail-box .task-list-left {
padding-left: 0;
}

.goal .sub_goal{ margin-left: 5%; width: 95%;  background: #16c7bf !important }

        
.dbox {
    position: relative;
    background: rgb(255, 86, 65);
    background: -moz-linear-gradient(top, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ff5641', endColorstr='#fd3261', GradientType=0);
    border-radius: 4px;
    text-align: center;
    margin: 60px 0 50px;
}
.dbox__icon {
    position: absolute;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
}
ul.dropdown-menu.task_members.show {
    overflow-y: scroll;
    max-height: 50%;
}
.dbox__icon:before {
    width: 75px;
    height: 75px;
    position: absolute;
    background: #fda299;
    background: rgba(253, 162, 153, 0.34);
    content: '';
    border-radius: 50%;
    left: -17px;
    top: -17px;
    z-index: -2;
}
.dbox__icon:after {
    width: 60px;
    height: 60px;
    position: absolute;
    background: #f79489;
    background: rgba(247, 148, 137, 0.91);
    content: '';
    border-radius: 50%;
    left: -10px;
    top: -10px;
    z-index: -1;
}
.dbox__icon > i {
    background: #ff5444;
    border-radius: 50%;
    line-height: 40px;
    color: #FFF;
    width: 40px;
    height: 40px;
  font-size:22px;
}
.dbox__body {
    padding: 50px 20px;
}
.dbox__count {
    display: block;
    font-size: 30px;
    color: #FFF;
    font-weight: 300;
}
.dbox__title {
    font-size: 13px;
    color: #FFF;
    color: rgba(255, 255, 255, 0.81);
}
.dbox__action {
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    left: 50%;
}
.dbox__action__btn {
    border: none;
    background: #FFF;
    border-radius: 19px;
    padding: 7px 16px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .5px;
    color: #003e85;
    box-shadow: 0 3px 5px #d4d4d4;
}


.dbox--color-2 {
    background: rgb(252, 190, 27);
    background: -moz-linear-gradient(top, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    background: -webkit-linear-gradient(top, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    background: linear-gradient(to bottom, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fcbe1b', endColorstr='#f85648', GradientType=0);
}
.dbox--color-2 .dbox__icon:after {
    background: #fee036;
    background: rgba(254, 224, 54, 0.81);
}
.dbox--color-2 .dbox__icon:before {
    background: #fee036;
    background: rgba(254, 224, 54, 0.64);
}
.dbox--color-2 .dbox__icon > i {
    background: #fb9f28;
}

.dbox--color-3 {
    background: rgb(183,71,247);
    background: -moz-linear-gradient(top, rgba(183,71,247,1) 0%, rgba(108,83,220,1) 100%);
    background: -webkit-linear-gradient(top, rgba(183,71,247,1) 0%,rgba(108,83,220,1) 100%);
    background: linear-gradient(to bottom, rgba(183,71,247,1) 0%,rgba(108,83,220,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b747f7', endColorstr='#6c53dc',GradientType=0 );
}
.dbox--color-3 .dbox__icon:after {
    background: #b446f5;
    background: rgba(180, 70, 245, 0.76);
}
.dbox--color-3 .dbox__icon:before {
    background: #e284ff;
    background: rgba(226, 132, 255, 0.66);
}
.dbox--color-3 .dbox__icon > i {
    background: #8150e4;
}

.tab-content{
  padding: 20px 0;
}

.task_status_kpi, .task_status_kpi2 {
    border-right: 1px solid #FFF !important;
    width: 15% !important;
}
.add_new_card li {
    list-style: none;
}
.grid_width, .add_new_card_grid  {
    opacity: 1;
    left: 0px;
    top: 0px;
    flex: 0 0 300px;
    max-width: 300px;
    padding: 2px 5px;
}
.card-block {
    /* min-height: 100%  !important; */
    background-color: #ce969600;
    border: 0px;
    /* height: 100% !important; */
}

.project-list-box{
  max-height: calc(100% - 30px);
  height: auto !important;
      position: relative
}

.project-add-list{
  position: absolute;
    left: 0;
    bottom: -20px;
}



.tooltip-pro {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip-pro .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip-pro .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip-pro:hover .tooltiptext {
  visibility: visible;
}

.tooltip_task {
  position: relative;
}

.tooltip_task .tooltiptext {
     font-size: 14px;
    visibility: hidden;
    width: auto;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    margin-left: 12px;
    position: fixed;
    z-index: 100000;
}

.tooltip_task .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}
span#navbarNotificationCounter {
    position: absolute;
    right: 0px;
}



.tooltip_task:hover .tooltiptext {
  visibility: visible;
}

.project-list-model .modal-content , .project-list-model #edit_task_name {
          background:  #f4f5f7;
        }
            .task_members{ padding: 10px; }
            .task_members .mltitle{ text-align: center; }
            .task_members li{ margin-bottom: 10px; }
                .subtask_width1{ width: 5%; float: left; text-align: center;}
                .subtask_width3{ width: 85%; float: left;}
                textarea.subtask_task{ padding: 0 5px;  }
                #edit_task_name{
                  margin-bottom: .5rem;
                  font-weight: 500;
            
                      color: #0b385d;
                      font-size: 20px;
                      border: none;
                      padding: 5px;
}
              .ga-task-lists{
                width: 100%;
                float: left;
                margin-top:10px;
              }
              .ga-task-lists .ts-check{
                
                  float: left;
              }
              
              .ga-task-lists .status { 
                width: 70px;
                  height: 8px;
                  border-radius: 5px;
                  background-color: #e5e5e5;
                  margin-bottom: 5px; 
                  float: left;
                  margin-left:  10px;
                  margin-top:3px;
              }

              .gm-right h3{ font-size: 16px; font-weight: bold; }
              div.tagsinput { height: auto !important; min-height: 40px !important; padding: 0px 5px !important; }


.projects-box{ 
    width: 100%;
    float: left;
    background: #FFF;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 0px 10px #00000020;
    margin: 10px 0;
    position: relative; 
}
.projects-box .detail-box{
    width: 100%;
    float: left;
}
.projects-box .bottom-box{
    width: 100%;
    float: left;
}
.projects-box .detail-box h6 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 10px;
    color: #828282;
}
.projects-box .dropdown {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 6px;
    top: 3px;
} 
.projects-box .dropdown .menu-btn {
    width: 40px;
    height: 40px;
    padding: 6px;
    font-size: 20px;
    background: transparent;
    color: #333;
    border: 0px;
} 
.projects-box .pro-title{
    margin-bottom: 20px;
    /* color: #4f99ff; */
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.projects-box .progress {
    height: 8px;
}
.projects-box .progress .progress-bar {
    background-color: #4f99ff!important;
}
.projects-box p {
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}
.projects-box ul {
    width: 100%;
    height: 30px;
    float: left;
    margin: 0px
}
.projects-box ul li {
    float: left;
    width: 26px;
    height: 26px;
    margin-right: 2px
}
.projects-box ul li img {
    width: 100%;
    height: 100%;
}
.content-box .project-header a {
    margin: 0px;
    background-color: transparent;
    margin-right: 15px;
    border: 0px;
    /* border-bottom: 2px solid #b9b9b9; */
    border-radius: 0px;
    color: #444444;
    font-size: 14px;
    padding: 4px 10px;
    font-weight: 500;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
    overflow: unset !important;
}
.fixed {
    position: fixed;
    width: 93% ;
    left: 85px ;
    right: 0px ;
    top: -5px ;
}
.none{
    display: none!important;
}

#noScroll {
    position: fixed;
    background-color: white;
}
.content-box .project-header a:hover {
    color: #4f99ff;
}
.content-box .project-header {
    position: absolute;
    width: 100%;
    float: left;
    background: #FFF;
    padding: 15px 30px;
    box-shadow: 0px 0px 10px #ccc;
    border-top: 1px solid #e6e6e6;
    left: 0px;
    top: 0;
}
.content-box .project-header .create-project-btn {
    background-color: #e4efff;
    border-radius: 20px;
    margin: 0px;
    padding: 6px 20px;
    color: #4f99ff;
    height: 31px;
}
/* .content-box .header .create-project-btn span {
    font-size: 20px;
} */
.content-box a.active {
    color: #4f99ff;
}
div#navbarSupportedContent i {
    font-size: 26px;
    color: #50565c;
}
            
#calendar {
    max-width: 900px;
    margin: 40px auto;
}  
.fc-event-inner {
    max-height: 16px;
    overflow: hidden;
    font-size: 10px;
}
@media (max-width: 991.98px){
    .layout-navbar.navbar-detached {
        width: calc(104vw - (100vw - 100%) - (1rem * 2))!important;
    }
    .fixed {
        position: fixed;
        width: 93%;
        left: 0;
        right: 0px;
        top: -11px;
    }
    .layout-menu-collapsed:not(.layout-menu-hover):not(.layout-menu-offcanvas):not(.layout-menu-fixed-offcanvas) .layout-menu .app-brand .layout-menu-toggle {
        display: block;
    }
    #layout-navbar.active-task {
        width: calc(100% - 440px) !important;
        margin: 0px;
        top: 8px !important;
        right: 0 !important;
        left: 113px !important;
    }
    th {
        padding: 2px !important;
        font-size: 9px !important;
    }
	td {
		padding: 2px !important;
	}
}
@media (max-width: 820px) {
    .dropdown-menu-end[data-bs-popper] {
        right: 0;
        left: 0;
    }
    #mainsortable{
        width: max-content;
    }
   
    span#navbarNotificationCounter {
        position: absolute;
        right: 12px;
        padding: 3px;
    }
    .btn-outline-primary {
        padding: 0px;
        font-size: 12px;
    }
    div#mainsortable {
        overflow-y: scroll;
    }
    .ui-sortable-handle {
        height: min-content;
    }
    
    .layout-navbar.navbar-detached.container-xxl {
        max-width: calc(100% - calc(-0.375rem * 2));
    }
    .project_name_title {
        border: 0;
        width: 212px;
    }
    .search_fliter,.activity_main {
        top: 67px;
    }
    #sidebar {
        margin-left: -200px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
        left: 0px !important;
    }
    #content.active {
        width: calc(100% - 70px);
    }
    #sidebarCollapse span {
        display: none;
    }
}
@media only screen and (max-width: 600px) {
    li.nav-item {
		margin: -8px !important;
	}
    .extra_users {
        background: #ffc107;
        color: #000;
        font-size: 12px;
        width: 20px;
        padding: 0px 3px;
        border-radius: 50%;
        position: absolute;
        left: 32px;
        top: 0px;
    }
  
    div#navbarSupportedContent i {
        font-size: 20px;
        color: #50565c;
    }
    .task_detail-box i {
        font-size: 10px;
    }
    .add_task_mobile_screen {
        display: block !important;
        position: fixed;
        z-index: 222;
        bottom: 10px;
    }
    .add_task_mobile_screen button {
        width: 57px;
        height: 57px;
        font-size: 19px;
        border-radius: 35px;
    }
    .add_task{
        display: none !important;
    }
	.m-form__actions.m-form__actions button {
        font-size: 9px;
        padding: 7px;
    }
	li.nav-item.navbar-dropdown.dropdown-user.notification.dropdown.ps-4.me-3 {
		padding: 2px !important;
	}
	.project-header a {
        font-size: 12px !important;
    }
	ul.dropdown-menu.dropdown-menu-end.show {
		right: 0;
		left: 0px;
	}
	span#navbarNotificationCounter {
        position: absolute;
        right: 12px;
        padding: 3px;
    }

    .task-header .select2 {
        width: auto !important;
    }
  .navbar-nav {
    flex-direction: unset;
  }
    .login {
    	position: absolute;
    	overflow: auto;
    }
    .login .login-box {
    	width: 100%;
    }
    .login .vertical-space-100 {
    	height: 140px;
    }
    .navbar {
        width: -webkit-fill-available;
        padding: 10px 15px;
        left: 0px;
    }
    .task-box .task-header {

        margin: 0;
    }
    #content.active .navbar {
    	width: calc(100% - 80px);
    	left: 80px;
    }
    #task-content.active-task .navbar {
    	width: 100%;
    }
    #content {
    	left: 0px !important;
    }
    #content .content-box {
        padding: 30px;
        position: unset;
        height: calc(100% - 101px);
        overflow: auto;
    }
    #content .content-box::-webkit-scrollbar {
	  	width: 0px;
	}
	#content .navbar #navbarSupportedContent {
		width: 100%;
		float: left;
		top: 60px;
		left: 0px;
		position: absolute;
	    background-color: #FFF;
	    box-shadow: 0px 10px 10px #00000030;
	    z-index: -1;
	}
	#content .navbar ul{
		margin-top: 10px;
	}
    .list-unstyled.project-list-btn-box li {
        color: #333;
        border-bottom-style: unset;
        padding-top: unset;
        list-style: unset;
    }
    .task_status_kpi, .task_status_kpi2 {
        border-right: 1px solid #FFF;
        width: 15%;
    }
    #content .navbar ul.task-menu {
        padding: 0px 19px;
        float: right;
        margin-bottom: 10px;
    }
    .dbox__body {
        padding: 50px 5px;
    }
  
  
	#content .navbar ul.task-menu li .btn {
		border: 0px;
	    width: 180px;
	    margin-bottom: 10px;
	    background-color: #038FDE;
	    color: #FFF;
	} 
	#content .navbar #navbarSupportedContent ul li a {
        position: relative;
	}
  

    #content .navbar ul li.dropdown .dropdown-toggle::after {
        right: 15px;
    }
	#content .navbar ul li .btn.bg-danger {
		background-color: #f50f25!important;
	}
	#content .navbar ul li .btn span {
		display: initial;
	}
	#content .navbar ul li .btn:hovar {
		background-color: #038FDE;
	}
	#content .navbar ul li.dropdown ul {
	    width: calc(100% - 10px);
	    margin: 20px 0;
	    margin-top: 0px;
	    position: absolute;
	}
	#content .navbar ul li.dropdown li a {
		background-color: #FFF !important;
		color: #777 !important;
	}
	#content .navbar ul li.dropdown li a span {
		color: #777;
	}
    .card-block {
        min-height: auto;
    }
	.form_components h3.hr {
		padding: 15px 20px;
	}
	.form_components .hr {
		padding: 12px 20px;
	}
	.form_components .form_detail {
		padding: 15px;
	}
	.form_components .input-box {
		padding: 0px;
	}
	.form_components .input-box label {
		text-align: left;
		padding: 5px 15px;
	}
	.form_components .input-box input, .form_components .input-box select {
		margin-bottom: 5px;
	}
	.navbar #sidebarCollapse:focus, .navbar button.btn-dark:focus {
		box-shadow: initial;
	}
	
	
   
    .project-list-model .modal-dialog {
        max-width: 100%;
    }

    .back_to_task .status_list{ margin-top:30px !important; }
    .task-box .task-header .text-box input.add-task-input {
        width: calc(90% - 50px);
    }
    .select2-container--default {
        /* width: 100% !important; */
            z-index: 999999999999999999;
    }
    /* .daterangepicker.ltr.show-calendar.opensright {
        top: 5px !important;
    } */
    .project_name_title {
        border: 0;
        width: unset;
    }

    .card-block {
        height: 100%;
        margin: 10px
    }   
    .grid_width, .add_new_card_grid {
        display: contents;
    }
    .project-list-box {
        width: 322px;
        max-width: 322px;
        margin-bottom: 10px;
    }
    .project-header a {
        margin-right: -2px !important;
    }    
   
    .task-contend-details {
        height: -webkit-fill-available;
        top: 0px;
        left: 0px;
        z-index: 9999999999999999999;
    }
    div#navbarSupportedContent {
        position: absolute;
        top: 69px;
        background-color: white;
        width: 100%;
        left: 0px;
        padding: 10px;
    }
    .task-filter-details {
        height: -webkit-fill-available;
        top: 0px;
        z-index: 9999999999;
    }
    #task-filter-details.active-task {
        width: -webkit-fill-available;
        display: block;
    }
    #task-contend-details.active-task {
        width: -webkit-fill-available;
        display: block;
    }
    .layout-navbar.navbar-detached {
        width: calc(100vw - (100vw - 100%) - (0rem * 2)) !important;
    }

}
.layout-page {
    overflow: scroll;
}
