@charset "UTF-8";
progress,sub,sup
{
	vertical-align:baseline
}

button,hr,input
{
	overflow:visible
}

[type=checkbox],[type=radio],legend
{
	box-sizing:border-box;
	padding:0
}

html
{
	font-family:sans-serif;
	line-height:1.15;
	-ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%
}

body
{
	margin:0
}

article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary
{
	display:block
}
audio,canvas,progress,video
{
	display:inline-block
}

audio:not([controls])
{
	display:none;
	height:0
}

[hidden],template
{
	display:none
}

a
{
	background-color:transparent;
	-webkit-text-decoration-skip:objects
}

a:active,a:hover
{
	outline-width:0
}
@keyframes rotate135 {
	from
	{
		opacity:1;
		transform:rotate(-45deg)
	}
	
	to
	{
		opacity:1;
		transform:rotate(-135deg)
	}
}
@keyframes rotate45 {
	to
	{
		transform:rotate(-45deg)
	}
}
@keyframes rotateBack {
	to
	{
		transform:rotate(0)
	}
}
@keyframes slideRight {
	to
	{
		transform:translateX(130%)
	}
}

@keyframes slideLeft {
	to
	{
		transform:translateX(-130%)
	}
}

@keyframes slideBack {
	to
	{
		transform:translateX(0)
	}
}
*, :after, :before {
    box-sizing: border-box;
}
html {
    color: #231f20;
    font-size: 14px;
    font-family: Rubik,Arial,sans-serif;
    letter-spacing: .01em;
    line-height: 1.7;
}
:root {
  --bg:#ebf0f7;
  --header:#fbf4f6;
  --text:#2e2e2f;
  --white:#ffffff;
  --light-grey:#c4cad3;
  --grey:#091e420f;
  --tag-1:#ceecfd;
  --tag-1-text:#2e87ba;
  --tag-2:#d6ede2;
  --tag-2-text:#13854e;
  --tag-3:#ceecfd;
  --tag-3-text:#2d86ba;
  --tag-4:#f2dcf5;
  --tag-4-text:#a734ba;
  --light-yellow:#ffc375;
  --purple:#7784ee;
  --ds-text-subtle:#44546f;
}

* {
  	margin: 0;
  	padding: 0;
  	box-sizing: border-box;
  	font-family: "Ysabeau Infant", sans-serif;
  	scrollbar-width: thin;          /* "auto" или "thin"  */
	scrollbar-color: #606C7F #C7CED9;   /* плашка скролла и дорожка */ 
}

body {
  	color: var(--text);
}

*::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
*::-webkit-scrollbar-track {
  background: #C7CED9;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
  background-color: #606C7F;
  border: 3px solid #C7CED9;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

select option:checked{
  background: #333;
  color: #fff;
}
.app {
  background-color: var(--bg);
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

h1 {
  font-size: 30px;
}
.project {
  padding: 2rem;
  max-width: 75%;
  width: 100%;
  display: inline-block;
  transition: all 0.3s ease;
}
.project.open{
  max-width: calc(100% - 30px);
}
.project-info {
  padding: 0 0 2rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.project-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.project-top__search{
  border-radius: 8px;
  background: #ffffff;
  max-width: 455px;
  width: 100%;
  min-width: 250px;
  display: flex;
  align-items: center;
}
.project-top__search input{
  padding: 10px 15px 10px 39px;
  font-weight: 800;
  font-size: 14px;
  line-height: 19px;
  color: #606C7F;
  width: 100%;
  border-radius: 8px;
  border:none;
  outline: none;
}
.project-top__search-svg{
  background: url(/images/project/search.svg) no-repeat center center;
  width: 17px;
  height: 17px;
  display: flex;
  position: absolute;
  margin-left: 11px;
}
.project__btn-add-task{
  font-weight: 800;
  font-size: 14px;
  line-height: 19px;
  color: #FFFFFF;
  background: #42A5F5;
  border:none;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border-radius: 8px;
  width: 167px;
  display: flex;
  cursor: pointer;
  transition-property: background-color, border-color, box-shadow, color;
  transition-duration: 85ms;
  transition-timing-function: ease;
}
.project__btn-filter{
  font-weight: 800;
  font-size: 14px;
  line-height: 19px;
  background: #ffffff;
  color: #606C7F;
  border:none;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border-radius: 8px;
  display: flex;
  cursor: pointer;
  transition-property: background-color, border-color, box-shadow, color;
  transition-duration: 85ms;
  transition-timing-function: ease;
}
.task__comment-search-us{
	display: none;
	position: absolute;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
    background: #333333;
    padding: 5px;
    bottom: 151px;
    z-index: 10;
    width: 100%;
}
#commentUserList li{
	padding: 10px;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#commentUserList li:hover{
	background: rgb(255,255,255,0.3);
}
.project__btn-filter svg{
  fill: #606C7F;
}
.project__btn-filter span:first-child{
  padding: 10px;
  border-right: 1px solid #EBF0F7;
}
.project__btn-filter span:last-child{
  padding: 10px;
}
.project__btn-filter.active span:last-child{
	background: #CEECFD;
    color: #3789BC;
}
.project__btn-filter.active svg{
	fill:#3789BC;
}
.btn-add-task__tooltip{
  display: none;
}
.btn-filter__tooltip{
	display: none;
	margin-top: 5px;
	position: absolute;
	background: #ffffff;
	padding: 15px;
	box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border-radius: 8px;
  z-index: 11;
}
.project__btn-add-task span:first-child{
  padding: 10px;
  border-right: 1px solid #ffffff;
}
.project__btn-add-task span:last-child{
  padding: 10px;
}
.project__btn-add-task svg{
  fill: #ffffff;
}
.project__btn-add-task:hover{
  background: #CEECFD;
  color: #3789BC;
}
.project__btn-add-task:hover svg{
  fill: #3789BC;
}
.project-top__list-types{
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border-radius: 8px;
  display: flex;
}
.project__list-types__btn{
  padding: 10px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  background: #ffffff;
  color: #606C7F;
  border:none;
  cursor: pointer;
  transition-property: background-color, border-color, box-shadow, color;
  transition-duration: 85ms;
  transition-timing-function: ease;
}

.project-top__list-types button:first-child{
  -webkit-border-top-left-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-right: 1px solid #EBF0F7;
}
.project-top__list-types button:last-child{
  -webkit-border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-topright: 8px;
  -moz-border-radius-bottomright: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-left: 1px solid #EBF0F7;
}
.project__list-types__btn svg{
  fill: #C7CED9;
  margin-right: 10px
}
.project__list-types__btn.active{
  background: #CEECFD;
  color: #3789BC; 
}
.project__list-types__btn.active svg{
  fill: #3789BC;
}

.project-participants {
  display: flex;
  align-items: center;
}
.task__participants,.task__inner-participants{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.project-participants .project__user,.task__participants .task__owner{
  border:2px solid #fff;
}
.task__inner-participants .tooltip+.tooltip{
  margin-left: -15px;
}
.task__participants .tooltip+.tooltip{
  margin-left: -15px;
}
.project-participants .tooltip+.tooltip{
  margin-left: -15px;
}
.plus_users.tooltip{
  color: #606C80;
  font-weight: 800;
  font-size: 11.5344px;
  line-height: 19px;
}
.plus_users.tooltip .task__owner,.plus_users.tooltip .task__user,.plus_users.tooltip .project__user{
  background: #F2F4F7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plus_users.tooltip .task__owner div,.plus_users.tooltip .task__user div,.plus_users.tooltip .project__user div{
  margin: -1px 0 0 -2px;
}
.project-participants .project__user, .project-participants__add, .task-participants__add,.new-task-participants__add{
  width: 30px;
  height: 30px;
  display: inline-block;
  background: var(--purple);
  border-radius: 100rem;
  margin: 0 0.2rem;
}
.project-participants__add,.task-participants__add,.new-task-participants__add{
  background: #ffffff;
  border: 1px dashed #969696;
  font-size: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-participants__add:after,.task-participants__add:after,.new-task-participants__add:after{
  content: '';
  background: url(/images/add_us.svg) no-repeat center center;
  width: 16px;
  height: 16px;
  display: block;
}
.project-tasks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  grid-column-gap: 1.5rem;
}
/* Контейнер для таблицы */
.task-board-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    /*align-items: center;*/
}

/* Стрелки для прокрутки */
.scroll-left, .scroll-right {
    width: 40px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 0;
    z-index: 10;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}
.project-tasks {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto; 
  width: 100%;
}
.project-column{
  min-width: 257px;
}
.project-column-heading {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.js-sortable-task-column{
  margin-top: 1rem;
}
.project-column-heading__title {
  font-size: 20px;
}
.project-column-heading__options {
  background: transparent;
  color: var(--light-grey);
  font-size: 18px;
  border: 0;
  cursor: pointer;
}
.projects_proj {
  cursor: pointer;
  background-color: var(--white);
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  margin-bottom: 1rem;
  border: 3px dashed transparent;
}
.projects_proj:hover{
    box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
    border-color: rgba(162, 179, 207, 0.2) !important;
}
.projects_proj.add_project{
	background-color: var(--grey);
}
.projects_proj__list{
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    grid-column-gap: 1.5rem;
}
.task-activity__title{
  font-size: 16px;
}
.task {
  cursor: pointer;
  background-color: var(--white);
  padding: 1rem;
  border-radius: 8px;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  margin-bottom: 1rem;
  border: 3px dashed transparent;
}
.task:hover {
  box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
  border-color: rgba(162, 179, 207, 0.2) !important;
}
.task p {
  font-size: 15px;
  margin: 1.2rem 0;
}
.task__tag {
  border-radius: 100px;
  padding: 2px 13px;
  font-size: 12px;
}
.task__tag--copyright {
  color: var(--tag-4-text);
  background-color: var(--tag-4);
}
.task__tag--day{
  background-color: var(--light-yellow);
}
.task__tag--design {
  color: var(--tag-3-text);
  background-color: var(--tag-3);
}
.task__tag--illustration {
  color: var(--tag-2-text);
  background-color: var(--tag-2);
}
.task__tags {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.task__options {
  background: transparent;
  border: 0;
  color: var(--light-grey);
  font-size: 17px;
}
.task__stats {
  position: relative;
  width: 100%;
  color: var(--light-grey);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.task__comment-nick{
  background: #D8E7F4;
  padding: 3px;
  border-radius: 3px;
}
.task__stats-stat{
  display: flex;
  align-items: center;
}
.task__stats span:not(:last-of-type) {
  margin-right: 1rem;
}
.task__stats svg {
  margin-right: 5px;
}
.task__owner {
  width: 30px;
  height: 30px;
  border-radius: 100rem;
  background: var(--purple);
 /* position: absolute;
  display: inline-block;
  right: 0;
  bottom: 0;*/
}

.task-hover {
  border: 3px dashed var(--light-grey) !important;
}

.task-details {
  width: 24%;
  border-left: 1px solid #d9e0e9;
  display: inline-block;
  height: 100vh;
  vertical-align: top;
  padding: 3rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}
.task-details__toggle-btn{
  position: absolute;
  left: -13px; /* Расположение кнопки на краю панели */
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: transparent;
  width: 25px;
  height: 25px;
  border: 3px solid gray;
  border-radius: 50%;
}
.task-details__toggle-btn:after {
  position: absolute;
  top: 7px;
  right: 7px;
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-left: 3px solid gray;
  border-bottom: 3px solid gray;
  transform: rotate(-135deg);
}
.task-details.hide{
  width: 0;
  padding: 0;
}
.task-details.hide .task-activity,
.task-details.hide .task__archive,
.task-details.hide .tag-progress{
  display: none;
}
.task-details.hide .task-details__toggle-btn:after {
  transform: rotate(45deg);
  left: 8px;
  right: auto;
}
.tag-progress {
  margin: 1.5rem 0;
}
.tag-progress h2 {
  font-size: 16px;
  margin-bottom: 1rem;
}
.tag-progress p {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.tag-progress p span {
  color: #b4b4b4;
}
.tag-progress .progress {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  border-radius: 10px;
  height: 10px;
}
.tag-progress .progress::-webkit-progress-bar, .tag-progress .progress::-webkit-progress-value {
  border-radius: 10px;
}
.tag-progress .progress--copyright::-webkit-progress-bar {
  background-color: #ecd8e6;
}
.tag-progress .progress--copyright::-webkit-progress-value {
  background: #d459e8;
}
.tag-progress .progress--illustration::-webkit-progress-bar {
  background-color: #dee7e3;
}
.tag-progress .progress--illustration::-webkit-progress-value {
  background-color: #46bd84;
}
.tag-progress .progress--design::-webkit-progress-bar {
  background-color: #d8e7f4;
}
.tag-progress .progress--design::-webkit-progress-value {
  background-color: #08a0f7;
}

.task-activity h2 {
  font-size: 16px;
  margin-bottom: 1rem;
}
.task-activity li {
  list-style: none;
  margin: 1rem 0;
  /*padding: 0 1rem 1rem 0;*/
  position: relative;
  display: flex;
  align-items: flex-start;
}
.task-activity time {
  display: block;
  color: var(--light-grey);
}

.task-icon {
  width: 30px;
  height: 30px;
  border-radius: 100rem;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.task-icon svg {
  font-size: 12px;
  color: var(--white);
}
.task-icon--attachment {
  background-color: #fba63c;
}
.task-icon--comment {
  background-color: #5dc983;
}
.task-icon--edit {
  background-color: #7784ee;
}

@media only screen and (max-width: 1300px) {
  .project {
    max-width: 100%;
  }

  .task-details {
    width: 100%;
    display: flex;
  }

  .tag-progress,
.task-activity {
    flex-basis: 50%;
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .project-column:nth-child(2),
.project-column:nth-child(3) {
    display: none;
  }

  .project-tasks {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .project-column:nth-child(4) {
    display: none;
  }

  .project-tasks {
    grid-template-columns: 1fr;
  }

  .task-details {
    flex-wrap: wrap;
    padding: 3rem 1rem;
  }

  .tag-progress,
.task-activity {
    flex-basis: 100%;
  }

  h1 {
    font-size: 25px;
  }
}
.nav .logo{
  display: block;
  width: 122px;
  height: 22px;
}
.nav {
  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  top: 0;
  z-index: 11;
}
.nav {
    background: #42A5F5;
}
.nav__left-block{
    display: flex;
    align-items: center;
}
.nav__title {
    margin: 0px 30px;
}
.nav__item {
    display: inline-block;
    margin: 0px 30px;
}
.nav__item a{
  color: #ffffff;
  text-decoration: none;
}
.nav__item a:hover{
  text-decoration: underline;
}
.nav__auth-block{
    margin: 0 30px;
    display: flex;
    align-items: center;
}
.nav__note-link{
	width: 22px;
	height: 22px;
	margin-right: 12px;
	cursor: pointer;
  position: relative;
}
.nav__note-link.active svg{
  fill: #FFC737
}
.nav__note-link-cnt{
  width: 10px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  font-weight: 900;
  font-size: 9px;
  line-height: 12px;
  color: #616161;
  right: -1px;
  top: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.task__note{
  background: red;
  padding: 2px 6px;
  height: 20px;
  color: #ffffff;
  border-radius: 4px;
  align-items: center;
  display: inline-flex;
}
.notification {
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: fixed;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  font-size: 17px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s, bottom 0.5s;
  visibility: hidden;
}
.notification.show {
  z-index: 999999;
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}
.note{
	background-color: #ffffff;
    transform: translateX(100%);
    transition-duration: .1s;
    transition-property: transform, width;
    transition-timing-function: ease-in;
    width: 25%;
    bottom: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 5;
}
.note.active {
    background-color: var(--bg);
    box-shadow: 0 8px 12px #091e4226, 0 0 1px #091e424f;
    transform: translateX(0);
}
.note__inner{
  box-sizing: border-box;
  display: flex;
  flex: 1 1 auto;
  height: 100%;
  margin: 0;
  overflow-y: auto;
  padding: 0;
  width: 100%;
  flex-direction: column;
  overflow-x: hidden;
}
.note__title-bl{
  height: 56px;
  padding: 0 12px;
  position: relative;
  transition: opacity .2s ease-in;
  width: 100%;
}
.note__title{
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  padding: 18px 32px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  transition: margin .12s ease-in;
  white-space: nowrap;
  border-bottom: 1px solid #CCCCCC;
}
.note__title-bl>.f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: #dbdbdb;
  --f-button-hover-color: #dbdbdb;
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 10px;
  opacity: 1;
}
.note__title-bl>.f-button.is-close-btn:hover {
    background-color: #091e4224;
    color: #44546f;
    text-decoration: none;
}
.note__filter{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 6px 13px;
}
.note__bl{
	background-color: var(--white);
    border-radius: 8px;
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
}
.note__li{
    display: flex;
    align-items: flex-start;
    padding: 7px;
}
.note__li input{
	position: absolute;
  	z-index: -1;
  	opacity: 0;
}
.note__li input+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  margin-top: 10px;
}
.note__li input+label::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 0.5em;
}
.note__li input:checked+label::before {
  border-color: #42A5F5;
  background-color: #42A5F5;
}
.note__li input:focus:not(:checked)+label::before {
  border-color: #80bdff;
}
.note__li.active{
	background: #CEECFD/*rgba(45, 134, 186, 0.3);*/
}
.note__user{
	display: inline-flex;
	align-items: center;
}
.note__action-txt{
	margin-left: 39px;
    margin-top: -15px;
}
.note__name{
	border-radius: 8px;
    padding: 5px;
    background: #42A5F5;
}
.note__name time{
	font-size: 11px;
    font-weight: bold;
    line-height: 8px;
}
.note__name-name{
	padding: 5px;
	border-radius: 8px;
	background: #ffffff;
	display: block;
    text-decoration: none;
    color: #000000;
}
.note__action{
	padding: 5px;
}
.note__filter a{
	color:#333333;
	text-decoration: underline;
}
.note__filter a:hover{
	text-decoration: none;
}
.nav__note-link svg{
	fill:#ffffff;
}
.user-menu{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
  height: 20px;
  cursor: pointer;
}
.user-menu img{
	width: 100%;
	height: 100%;
}
.user-menu a{
    display: flex;
    align-items: center;
}
.user-menu ul {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 40px;
    right: 0;
    background: #fff;
    box-shadow: 0 15px 20px rgba(0,0,0,0.05);
    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    z-index: 100;
}
.user-menu ul li a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #212529;
    text-decoration: none;
    padding: 10px 50px 10px 15px;
    font-size: 18px;
    border-top: 1px solid #f5f5f5;
}
#wnd_box .header{
	padding: 4px 8px;
    position: relative;
    text-align: center;
    display: grid;
    align-items: center;
    grid-template-columns: 32px 1fr 32px;
}
.wnd_box_title{
	color: var(--ds-text-subtle);
    font-size: 18px;
    font-weight: 600;
    line-height: 40px;
    display: block;
    position: relative;
    height: 40px;
    margin: 0;
    overflow: hidden;
    padding: 0 32px;
    text-overflow: ellipsis;
    white-space: nowrap;
    grid-column: 1 / span 3;
    grid-row: 1;
}
#wnd_box{
	color: #172b4d;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0px 8px 12px #091e4226, 0px 0px 1px #091e424f;
    box-sizing: border-box;
    outline: 0;
    overflow: hidden;
    z-index: 11;
}
.btn-close {
  	margin: 0;
	border: 0;
	padding: 0;
	background-color: unset;
	border-radius: 8px;
    width: 32px;
    height: 32px;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 150ms;
	display: flex;
	grid-column: 3;
	grid-row: 1;
}
.btn-close .icon-cross {
	margin: 0;
    padding: 0;
    border: 0;
    background: none;
    position: relative;
    width: 13px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-close .icon-cross:before, .btn-close .icon-cross:after {
  	content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #000;
    border-radius: 6px;
}
.btn-close:active {
    background-color: #091e424f;
    text-decoration: none;
    color: #44546f;
}
.btn-close:hover {
    background-color: #091e4224;
    color: #44546f;
    text-decoration: none;
}
.btn-close .icon-cross:before {
  transform: rotate(45deg);
}
.btn-close .icon-cross:after {
  transform: rotate(-45deg);
}
#black_bg{
	display: none;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top:0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    /* указываем z-индекс для корректного наслаивания */
    z-index: 10;
}
.button {
    -webkit-appearance: none;
    border: none;
    border-radius: 3px;
    box-sizing: border-box;
    display: inline-block;
    line-height: 20px;
    margin-bottom: 8px;
    padding: 6px 12px;
    position: relative;
    text-decoration: none;
}
input[type="text"],input[type="password"],input[type="email"],textarea{
	outline: none;
    border: none;
    box-sizing: border-box;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    transition-property: background-color, border-color, box-shadow;
    transition-duration: 85ms;
    transition-timing-function: ease;
    /*border-radius: 3px;*/
    padding: 8px 12px;
    box-shadow: inset 0 0 0 1px #091e4224;
    background-color: #ffffff;
    width: 100%;
    margin-bottom: 0;
}
input[type="text"]:hover,input[type="password"]:hover,input[type="email"]:hover,textarea:hover{
	background-color: #f7f8f9;
  box-shadow: inset 0 0 0 1px #091e4224;
}
input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,textarea:focus{
	background-color: #fff;
  box-shadow: inset 0 0 0 1px #5664E7;
}
.button-submit{
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    cursor: pointer;
    padding: 8px 12px;
    text-decoration: none;
    white-space: normal;
    box-shadow: none;
    border: none;
    font-weight: 500;
    transition-property: background-color, border-color, box-shadow;
    transition-duration: 85ms;
    width: 100%;
    margin-top: 16px;
    font-weight: bold;
    transition-timing-function: ease;
    background-color: #7784EE;
    color: #ffffff;
}
.button-submit:hover{
    background-color: #5664E7;
    box-shadow: none;
    border: none;
    color: var(--white);
    text-decoration: none;
}
.button-submit:active{
    background-color: #5664E7;
}
.button-submit:disabled,.button-submit.disabled{
    pointer-events: none;
    background-color: #EBF0F7;
    color: #C9CFD7;
}
.form-label{
    color: #44546f;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    display: flex;
    flex-flow: column;
    margin-top: 5px;
    margin-bottom: 4px;
}
.form-input-name{
  margin-bottom: 5px;
}
.red-color{
	color: #e34935;
}
.wnd_box_content{
	padding: 10px 16px;
}

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}
.task__stats svg {
    margin-right: 5px;
}
.svg-inline--fa.fa-w-16 {
    width: 1em;
}
svg:not(:root).svg-inline--fa {
    overflow: visible;
}
.plus{
  	border-radius: 50%;
  	width: 25px;
  	height: 25px;
  	position: relative;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	margin-left: -8px;
    margin-right: 5px;
}
.plus:after{
	content: " ";
  	position: absolute;
  	display: block;
  	background-color: #000;
  	height: 2px;
  	left: 5px;
  	right: 5px;
  	z-index: 9;
}
.plus:before {
  	content: " ";
  	position: absolute;
  	display: block;
  	background-color: #000;
  	width: 2px;
  	top: 5px;
  	bottom: 5px;
  	z-index: 9;
}

.plus::before {font-family: sans-serif; font-weight: bold;}

.button__add-list-task{
	width: 100%;
  margin-bottom: 1rem;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  cursor: pointer;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.button__add-list-task:hover {
  box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
  border-color: rgba(162, 179, 207, 0.2) !important;
}
.nav__auth-login{
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    cursor: pointer;
    padding: 2px 23px 2px 4px;
    text-decoration: none;
    white-space: normal;
    box-shadow: none;
    border: none;
    font-weight: 500;
    transition-property: background-color, border-color, box-shadow;
    transition-duration: 85ms;
    width: 100%;
    font-weight: bold;
    transition-timing-function: ease;
    background-color: #CEECFD;
    color: #3789BC;
}
.nav__auth-login:hover:before{
  background-color: #3789BC;
}
.nav__auth-login:before{
  content: '';
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 85ms;
  background-color: #FFFFFF;
  -webkit-mask-image: url(/images/auth/login.svg);
  mask-image: url(/images/auth/login.svg);
  background-repeat: no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.form-check-bl{
  display: flex;
  align-items: center;
}
.form-check{
  flex: none;
  border: 1px solid #F2E6DC;
  width: 36px;
  height: 36px;
  /*border-radius: 3px;*/
  display: inline-block;
  margin-left: 15px;
}
.form-check.active{
  background: url(/images/auth/checkbox.svg) center center no-repeat;
  background-size: 60% 60%;
}
.register__form{
    height: 100%;
}
.register__form-section{
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-color: #ebf0f6;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-size: cover; 
}
.register__form-section[data-section="1"]{
    background-image: url(/images/auth/bg_1.jpg);
}
.register__form-section[data-section="2"]{
    background-image: url(/images/auth/bg_2.jpg);
}
.register__form-section[data-section="3"]{
    background-image: url(/images/auth/bg_2.jpg);
}
.register__form-section[data-section="2"] .register__form-blocks,
.register__form-section[data-section="3"] .register__form-blocks{
    padding-top: 100px;
    width: 450px
}
.layout__main{
    margin: 0 auto;
    max-width: 1370px;
    padding: 0 30px;
}
.register__form-block{
    flex: 1 1 0;  
}
.register__form-block-inner{
    background-color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
    margin-bottom: 1rem;
    border: 3px dashed transparent;
    font-size: 16px;
}
.register__form-block+.register__form-block{
    margin-left: 40px
}
.register__form--title-bl{
    padding: 30px 0 30px 30px;
}
.register__form--title{
    text-transform: uppercase;
    font-size: 25px;
    font-weight: bold;
}
.register__form-blocks{
    display: flex;
    width: 620px;
}
.register__form-block-title{
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px
}
.register__form-section[data-section="2"] .register__form-block-title,
.register__form-section[data-section="3"] .register__form-block-title{
    text-transform: none;
    text-align: left;
}
.register__form-check{
    flex: none;
    border: 1px solid #F2E6DC;
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(/images/auth/checkbox.svg) center center no-repeat;
    background-size: 50% 50%;
    margin-right: 15px;
}
.register__ul-li{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    line-height: 15px;
}
.title_h1{
  padding: 2rem 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.title_h1 h1{
  font-weight: 900;
}
.structure__line{
    display: flex;
    align-items: flex-start;
  }
.structure__img{
  padding: 0 17px;
  text-align: center;
}
.structure__img svg{
  width: 31px;
    height: 62px;
}
.structure__text{
  font-weight: 700;
  font-size: 20px;
  color: #C4CAD3;
  width: 200px
}
.structure__name{
  background-color: var(--white);
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border: 3px dashed transparent;
  font-weight: 700;
  font-size: 16px;
  min-height: 55px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.structure__add-str-btn{
  width: 30px;
  height: 30px;
  margin: 0 17px;
  border: 2px dashed #999999;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.structure__add-str-btn:after{
  font-size: 22px;
  font-weight: 600;
  color: #999999;
  content: '+';
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.structure__add-str-btn.active:after{
  content: '-';
}
.structure__add-str-bl form{
  display: flex;
  align-items: center;
}
.structure__name.bold{
  font-weight: 900;
}
.structure__add-str-bl{
  background-color: var(--white);
  padding: 10px;
  border-radius: 8px;
  color: var(--text);
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border: 3px dashed transparent;
}
.structure__btn-bl{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px
}
.structure__add-btn{
  cursor: pointer;
  background-color: var(--white);
  border-radius: 8px;
  position: relative;
  width: 55px;
  height: 55px;
  border: 3px dashed transparent;
  color: var(--text);
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  font-weight: 400;
}

.structure__add-btn::after {
  font-size: 33px;
  font-weight: 600;
  content: '+';
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.structure__remove-btn{
  cursor: pointer;
  background-color: rgba(252, 76, 76, 0.4);
  border-radius: 8px;
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  font-weight: 400;
}
.structure__remove-btn:after,.structure__remove-btn:before{
  content: "";
  position: absolute;
  height: 2px;
  width: 19px;
  background: var(--text);
  border-radius: 6px;
}
.structure__remove-btn:before {
  transform: rotate(45deg);
}
.structure__remove-btn:after {
  transform: rotate(-45deg);
}
.structure__add-btn:hover,
.structure__remove-btn:hover{
  box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
  border-color: rgba(162, 179, 207, 0.2) !important;
}
.structure__add-str-btn svg{
  fill: #999999;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.input-add-btn{
  cursor: pointer;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  position: relative;
  height: 30px;
  margin-left: 10px;
  background-color: #E6F6FE;
  border-radius: 50%;
}
.input-add-btn::after {
  font-size: 22px;
  position: absolute;
  content: '+';
  color: #4C97C4;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.input-add-btn:hover{

}
.form-task{
  width: 750px
}
.edit-btn{
  cursor: pointer;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  position: relative;
  height: 30px;
  margin-left: 10px;
  background-color: #E6F6FE;
  border-radius: 50%;
}
.del-btn{
  cursor: pointer;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  position: relative;
  height: 30px;
  margin-left: 10px;
  background-color: #E6F6FE;
  border-radius: 50%;
}
.del-btn:after,.del-btn:before{
  content: "";
  position: absolute;
  height: 1.5px;
  width: 12px;
  background: #4C97C4;
  border-radius: 6px;
}
.del-btn:before {
    transform: rotate(45deg);
}
.del-btn:after {
    transform: rotate(-45deg);
}
.edit-btn svg{
  width: 17px;
  height: 17px;
  fill:#4C97C4;
}
.structure__name-btns{
  display: flex;
  align-items: center;
}
.structure__add-name-bl{
  background-color: var(--white);
  padding: 2px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border: 3px dashed transparent;
  font-weight: 700;
  font-size: 16px;
  margin-left: 15px;
  min-height: 55px;
  display: flex;
  align-items: center;
}
.fancybox__backdrop{
  background: rgba(24, 24, 27, 0.38);
}
.fancybox__content{
  background: #EBF0F7;
  border-radius: 10px;
  padding: 20px;
}
.fancybox__content>.f-button.is-close-btn{
  top: 5px;
  right: 5px;
  border-radius: 10px;
  opacity: 1;
}
.fancybox__content>.f-button.is-close-btn:hover{
  background-color: #091e4224;
  color: #44546f;
  text-decoration: none;
}
.title-from-bold{
  font-size: 27px;
  font-weight: 900;
}
.form-task .input-file {
  position: relative;
}
.form-task .input-file span {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  width: 100%;
  vertical-align: middle;
  color: #3789BC;
  text-align: left;
  border-radius: 4px;
  background-color: #E6F5FD;
  line-height: 22px;
  height: 40px;
  padding: 10px 20px;
  box-sizing: border-box;
  border: none;
  margin: 0;
  transition: background-color 0.2s;
}
.form-task .input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
 
/* Focus */
.form-task .input-file input[type=file]:focus + span {
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
 
/* Hover/active */
.form-task .input-file:hover span {
  background-color: #59be6e;
}
.form-task .input-file:active span {
  background-color: #2E703A;
}
 
/* Disabled */
.form-task .input-file input[type=file]:disabled + span {
  background-color: #eee;
}
.form-task__users{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}
.form-task__timing{
  display: flex;
  align-items: center;
  justify-content: space-between; 
}
.form-task__user-bl{
  cursor: pointer;
  background-color: var(--white);
  padding: 3px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border: 3px dashed transparent;
  width: 230px;
}
.form-task__user{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5px;
}
.form-task__user_name{
  line-height: 15px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.form-task__user_job{
  font-size: 11px;
  line-height: 11px;
  font-style: italic;
  white-space: nowrap;
}
.form-task__add-user-bl{
  width: 100%;
  margin-bottom: 1rem;
  border: 3px dashed transparent;
  z-index: 10;
}
.form-task .form-task__add-user-bl{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 3px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  margin-bottom: 1rem;
  border: 3px dashed transparent;
  z-index: 10;
}
.add_task_user_form .form-task__find-user input,.add_project_user_form input{
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  margin-top: 3px;
}
.add_project_user_form{
  min-width: 290px;
}
.add_task_user_form{
  min-width: 250px;
}
.form-task__add-user-bl{
  max-width: 310px
}
.add_task_user_form ul,.add_project_user_form ul,.form-task__add-user-bl ul{
  margin-top:5px;
  border-radius: 8px;
  padding: 0 7px;
  background: #fff;
}
.add_task_user_form ul li{
  list-style: none;
  border-bottom: 1px solid #ccc;
  padding: 5px 0;
}
.add_task_user_form ul li:last-child{
  border:none;
}
.form-task__add-user-bl ul{
  margin-top:3px;
}
.form-task__add-user-bl ul li{
  list-style: none;
  border-bottom: 1px solid #ccc;
  padding: 5px 0;
}
.form-task__add-user-bl ul li:last-child{
  border:none;
}
.form-task__users-bl{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 230px;
}
.profile{
  display: flex;
  justify-content: space-between;
  max-width: 800px;
}
.profile__left{
  flex: 1 0 0;
  max-width: 240px;
}
.profile__inp-title{
  color: #B3B3BD;
}
.profile__inp-name{
  font-weight: 600;
}
.profile__struct-bl{
  background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
}
.profile__img-bl{
  background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;  
    text-align: center;
    margin-bottom: 20px;
}
.profile__right{
  flex: 1 1 0;
  margin-left: 20px;
  background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
}
.profile__status{
  display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: -10px;
    letter-spacing: -0.5px;
    font-weight: 500;
    font-size: 13px;
}
.profile__status span{
  display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #33CC66;
    margin-right: 5px;
}
.profile__row{
  display: flex;
  align-items: center;
}
.profile__right-title{
  font-weight: 600;
    font-size: 16px;
}
.profile__top-bl{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #CCD2D9;
  padding-bottom: 5px;
    margin-bottom: 20px;
}
.profile__row-fl{
  flex: 1 0 0;
  margin-bottom: 10px;
}
.profile__edit-btn{
  cursor: pointer;
  color: #B3B3BD;
}
.profile__row-fl+.profile__row-fl{
  margin-left: 20px
}
.profile__img{
  cursor: pointer;
}
.profile__img-bl-inner{
  width: 150px;
  height: 150px;
  margin: 10px auto;
}
.profile__img-bl-inner img{
  border-radius: 50%;
}
#ava{
  display: none;
}
.button-submit-task{
  background-color: #42A5F5;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #fff;
  padding: 13px 50px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 10px;
}
.air-datepicker-global-container {
  z-index: 99999 !important;
}
.project-info h1{
  font-weight: 900;
}
.__select {
	position: relative;
	width: 100%;
	font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}
.task__users-bot .__select{
  max-width: 220px;
}
.__select__title span:not([data-text]){
    background-color: white;
    width: 25px;
    display: block;
    position: absolute;
    right: 6px;
    left: auto;
    height: 25px;
    border-radius: 50%;
    z-index: 1;
}
.__select[data-state=active] .__select__title::before {
  transform: translate(-3px, -50%) rotate(-45deg);
}
.__select[data-state=active] .__select__title::after {
  transform: translate(3px, -50%) rotate(45deg);
}
.__select[data-state=active] .__select__content {
  opacity: 1;
}
.__select[data-state=active] .__select__label + .__select__input + .__select__label {
  max-height: 34px;
  border-top-width: 1px;
}
.__select__title {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 8px 20px;
  border-radius: 10px;
  background: #42A5F5;
  position: relative;
  z-index: 2;

  cursor: pointer;
}
.__select__title::before, .__select__title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 14px;
	display: block;
	width: 10px;
	height: 2px;
	transition: all 0.3s ease-out;
	background-color: #42A5F5;
	transform: translate(-3px, -50%) rotate(45deg);
  z-index: 2;
}
.__select__title::after {
  	transform: translate(3px, -50%) rotate(-45deg);
}
.__select__title:hover {
  	border-color: #FDC324;
}
.__select__title:hover::before, .__select__title:hover::after {
  	background-color: #FDC324;
}
.__select__content {
	position: absolute;
  top: 30px;
  z-index: 1;
  color:#B3B3BD;

	display: flex;
	flex-direction: column;
	/*width: calc(100% - 6px);*/
	width: 100%;

	background-color: #ffffff;

	border: 1px solid #c7ccd1;
	border-top: none;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;

	transition: all 0.3s ease-out;

	opacity: 0;
}
.__select__input {
  display: none;
}
.__select__input:checked + label{
	background-color: #dedede;
}
.__select__input:disabled + label{
	opacity: 0.6;
    pointer-events: none;
}
.__select__label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  max-height: 0;
  padding: 0 16px;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: all 0.2s ease-out;

  cursor: pointer;

  overflow: hidden;

  & + input + & {
    border-top: 0 solid #c7ccd160;
  }
}
.__select__label:hover{
  color: #191919;
}
.__select__mini-label{
  width: 100%;
  font-size: 10px;
  text-transform: none;
  margin-top: -10px;
}
[data-task-moving]{
  position: relative;
}
.pop-over-content{
  max-height: 672px;
  padding: 0 12px 12px;
}
.pop-over-content .__select{
  margin: 12px 0
}
.pop-over .f-button.is-close-btn{
  background-color: #091e4224;
  color: #44546f;
  text-decoration: none;
  top: 5px;
  right: 5px;
  border-radius: 10px;
  opacity: .75;
  width: 34px;
  height: 34px;
}
.pop-over .f-button.is-close-btn:hover{
  opacity: 1
}
.pop-over-header{
  align-items: center;
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  padding: 4px 8px;
  position: relative;
  text-align: center;
}
.pop-over-header-title{
  box-sizing: border-box;
  color: #172b4d;
  color: #44546f;
  display: block;
  font-size: 16px;
  font-weight: 600;
  grid-column: 1 / span 3;
  grid-row: 1;
  height: 40px;
  letter-spacing: -.003em;
  line-height: 16px;
  line-height: 40px;
  margin: 0;
  overflow: hidden;
  padding: 0 32px;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
}
.pop-over-mini-title{
  color: #44546f;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}
.task__moving-form{
  display: none;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 12px #091e4226, 0 0 1px #091e424f;
  position: absolute;
  top: -100%;
  -webkit-transform: translateZ(0);
  width: 304px;
  z-index: 70;
}
.task__archive-link{
  font-size: 16px;
  color: #000000;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: #000000;
  text-underline-position: under;
}
.task__archive-link:hover{
  text-decoration: none;
}
.task__comments-main{
  max-width: 700px;
  display: flex;
  flex-direction: column;
}
.task__comments-input{
  margin: 15px 0;
  position: relative;
}
.task__comment{
  width: 100%;
  max-width: 80%;
}
.task__head{
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.task__head time{
  margin-left: 6px;
  color: var(--light-grey);
}
.task__comment-inner{
  background: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border-radius: 10px;
  padding: 8px 3px;
}
blockquote .task__comment-inner{
  box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
}
.task__comment-action{
  display: flex;
  align-items: center;
}
.task__comment-action a{
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  color: #5A5A5B;
  text-decoration: none;
  white-space: nowrap;
}
.task__comment-action a:hover{
  text-decoration: underline;
}
[data-comment_action]{
  position: relative;
  margin-left: 10px;
}
.ca-submenu{
  display: none;
  position: absolute;
  list-style: none;
  bottom: 25px;
  background: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border-radius: 8px;
  box-shadow: 0px 0px 15px #E0E5EB;
}
.ca-submenu li a{
  padding: 4px 14px;
  display: block;
}
.ca-submenu li:first-child a{
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.ca-submenu li:last-child a{
  -webkit-border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.ca-submenu li a:hover{
  background: #DEE4EC;
  text-decoration: none;
}
.task__descr-txt{
  position: relative;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
}
.task__descr-txt ol,.task__descr-txt ul{
 	margin-left: 25px
}
.task__hidden-edit-txt{
  background-color: #DEE4EC;
  border: none;
  outline: none;
  border-radius: 3px;
  box-shadow: none;
  box-sizing: border-box;
  color: #172b4d;
  cursor: pointer;
  display: block;
  font-weight: 500;
  height: 32px;
  margin-top: 8px;
  max-width: 300px;
  overflow: hidden;
  padding: 4px 12px;
  position: relative;
  position: absolute;
  top: -18px;
  right: -10px;
  opacity: 0;
  transition-duration: 90ms;
  transition-property: opacity;
  transition-timing-function: ease;
}
.task__edit-save{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.task__hidden-edit-txt:hover{
  background-color: #CBD2DD;
  text-decoration: none;
}
.task__descr-txt:hover .task__hidden-edit-txt{
  opacity: 1;
}
.comment__del-btn{
  cursor: pointer;
  margin-top: 15px;
  background-color: #ca3521;
  border: none;
  box-shadow: none;
  color: #ffffff;
  border-radius: 3px;
  align-items: center;
  font-weight: 500;
  justify-content: center;
  line-height: 20px;
  padding: 6px 12px;
  text-decoration: none;
  transition-duration: 85ms;
  transition-property: background-color, border-color, box-shadow;
  transition-timing-function: ease;
  white-space: normal;
}
.comment__del-btn:hover{
  background-color: #ae2a19;
  text-decoration: none;
}
.task__input-msg{
  width: 100%;
  background: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  border-radius: 10px;
  padding: 8px 15px;
  cursor: pointer;
}
.task__msg-btns{
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.task__input-msg:hover{
  background: rgba(0,0,0,0.1);
}
.mini_del_form{
  max-width: 340px;
}
.task__time{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.task__time-left{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.task__time-deadline{
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  color: #1D1F1F;
}
textarea.title-from-bold{
  height: 46px;
  line-height: 46px;
  background: transparent;
  border: none;
  overflow: hidden;
  overflow-wrap: break-word;
  box-shadow: none;
  resize: none;
  padding: 0;
  color: #374151;
  transition-duration: 85ms;
  transition-property: background-color, border-color, box-shadow;
  transition-timing-function: ease;
  border-radius: 10px;
  max-width: 97%
}
textarea.title-from-bold:focus {
    background-color: #fff;
    box-shadow: inset 0 0 0 2px #388bff;
}
.task__time-add{
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  color: #ACACB5;
  margin-left: 15px;
}
.task__time-deadline a{
  outline: none;
  border:none;
  color: #1D1F1F;
}
.task__time-deadline a:hover{
  text-decoration: none;
}
.task__del-file{
  cursor: pointer;
  position: absolute;
  top: -6px;
  right: -4px;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  text-align: center;
  display: flex;
  width: 16px;
  height: 16px;
  opacity: 0.5;
  background: #D3394C;
}
.task__del-file:hover{
  opacity: 1;
}
.task__del-file:before, .task__del-file:after {
  position: absolute;
  content: ' ';
  height: 9px;
  width: 1.5px;
  background-color: #fff;
}
.task__del-file:before {
  transform: rotate(45deg);
}
.task__del-file:after {
  transform: rotate(-45deg);
}
.task__msg-send{
  cursor: pointer;
  border: none;
  border-radius: 3px;
  font-size: 15px;
  padding: 0.625rem 1.25rem;
  background-color: #579DFF;
  font-weight: bold;
  color: #ffffff;
  border-radius: 3px;
  letter-spacing: 0.1px;
}
.task__edit-savebtn{
  cursor: pointer;
  border: none;
  border-radius: 3px;
  font-size: 15px;
  padding: 0.625rem 1.25rem;
  background-color: #579DFF;
  font-weight: bold;
  color: #ffffff;
  border-radius: 3px;
  letter-spacing: 0.1px;
}
.task__msg-file{
  cursor: pointer;
  border: none;
  border-radius: 3px;
  padding: 6px 12px;
  background-color: #579DFF;
  font-weight: bold;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.1px;
}
.mce-content-body p{
  margin: 10px 0;
}
.task__msg-send:hover,
.task__msg-file:hover{
  background-color: #4C8AE1;
}
.task__comment-files{
  display: flex;
  padding-left: 44px;
  align-items: center;
}
.task__comment-files-title{
  color: #828b95;
  margin-right: 10px;
}
.task__file-bl{
  position: relative;
}
.task__file-bl+.task__file-bl{
  margin-left: 5px;
}
.task__file{
  color: #ffffff;
  text-decoration: none;
  outline: none;
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: cornflowerblue;
}
.task__comment-file{
  color: #ffffff;
  text-decoration: none;
  outline: none;
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: cornflowerblue;
}
.task__comment-file+.task__comment-file{
  margin-left: 3px;
}
.task__file.zip,.task__comment-file.zip,
.task__file.rar,.task__comment-file.rar,
.task__file.arj,.task__comment-file.arj{
  background-color: #9400d3;
}
.task__file.xls,.task__comment-file.xls,
.task__file.xlsx,.task__comment-file.xlsx,
.task__file.csv,.task__comment-file.csv{
  background-color: #10793F;
}
.task__file:hover{
  text-decoration: underline;
}
.task__comment-file:hover{
  text-decoration: underline;
}
.task__comment.right{
  justify-content: flex-end;
  margin-left: auto;
}
.task__comment+.task__comment{
  margin-top: 10px;
}
.task__descr{
	min-width: 700px;
  max-width: 700px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 15px;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
}
.task__descr table{
  width: 100%;
}
.task__descr table td{
  padding: 3px;
}
.task__descr a {
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;      /* Для поддержки старых браузеров */
}
.task__files{
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #DADEE4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.task__comment .tooltip-bottom-left{
  left:0;
}
.task__comment-text{
  padding-left: 36px;
  font-weight: 500;
  margin-top: -10px;
  padding-right: 10px;
  line-height: 22px;
  word-break: break-word;
}
.task__comment-text blockquote{
  border-left: 2px solid #ccc;
  margin-left: 0;
  padding: 5px 10px;
  color: #666;
  margin-bottom: 10px;
}
.task__user{
	width: 30px;
  height: 30px;
  display: inline-block;
  background: var(--purple);
  border-radius: 100rem;
  border: 2px solid #fff;
  margin: 0 0.2rem;
}
.task__comment .tooltip{
  display: inline-flex;
  color: #828b95;
}
.task__users-top{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 15px;
}
.task__users-bl-title{
	margin-right: 15px;
}
.task__users-bl{
	display: flex;
	align-items: center;
}
.task__users-bot{
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.task__archive{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.task__active-el{
  flex:1;
}
.task__active-el+.task__active-el{
  margin-left: 10px;
}
.task__archive-btn, .pop-over__btn{
    background-color: #091e420f;
    border: none;
    outline: none;
    text-align: center;
    border-radius: 3px;
    box-shadow: none;
    box-sizing: border-box;
    color: #172b4d;
    cursor: pointer;
    display: block;
    font-weight: 500;
    height: 32px;
    margin-top: 8px;
    max-width: 300px;
    overflow: hidden;
    padding: 4px 12px;
    position: relative;
    text-decoration: none;
    text-overflow: ellipsis;
    transition-duration: 85ms;
    transition-property: background-color, border-color, box-shadow;
    transition-timing-function: ease;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
}
.task__archive-btn:active, .task__archive-btn:hover, .pop-over__btn:hover, .pop-over__btn:active{
  background-color: #091e4224;
  text-decoration: none;
}
.task__archive-tasks.active{
  background-color: var(--bg);
  box-shadow: 0 8px 12px #091e4226, 0 0 1px #091e424f;
  transform: translateX(0);
}
.task__archive-tasks{
  background-color: #ffffff;
  transform: translateX(100%);
  transition-duration: .1s;
  transition-property: transform, width;
  transition-timing-function: ease-in;
  width: 25%;
  bottom: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 11;
}
.task__archive-inner{
  box-sizing: border-box;
  display: flex;
  flex: 1 1 auto;
  height: 100%;
  margin: 0;
  overflow-y: auto;
  padding: 0;
  width: 100%;
  flex-direction: column;
  overflow-x: hidden;
}
.task__archive-title-bl{
  height: 56px;
  padding: 0 12px;
  position: relative;
  transition: opacity .2s ease-in;
  width: 100%;
}
.task__archive-title{
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  padding: 18px 32px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  transition: margin .12s ease-in;
  white-space: nowrap;
  border-bottom: 1px solid #CCCCCC;
}
.task__archive-title-bl>.f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: #dbdbdb;
  --f-button-hover-color: #dbdbdb;
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 10px;
  opacity: 1;
}
.task__archive-title-bl>.f-button.is-close-btn:hover {
    background-color: #091e4224;
    color: #44546f;
    text-decoration: none;
}
.task__archive-inner .task {
    display: block;
    margin: 8px auto 16px;
    max-width: 260px;
}
.inputfile {
    display: none;
}

.inputfile + label {
    font-weight: 700;
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}


/* style 1 */

.inputfile + label {
  border-radius: 3px;
    color: #f1e5e6;
    background-color: #d3394c;
}

.inputfile:focus + label,
.inputfile.has-focus + label,
.inputfile + label:hover {
    background-color: #722040;
}

.switch-slide {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  user-select: none
}
.switch-slide__item {
  cursor: pointer
}
.switch-slide__item:first-child {
  padding-right: 50px
}
.switch-slide__item:first-child .switch-slide__lbl:before {
  left: 100%
}
.switch-slide__item:last-child {
  padding-left: 50px;
  margin-left: -50px
}
.switch-slide__item:last-child .switch-slide__lbl:before {
  left: -50px
}
.switch-slide-bl{
  display: flex;
  margin-top: 20px;
}
.switch-slide__title{
  font-weight: 600
}
.switch-slide-bl .switch-slide{
  margin-left: 30px
}
.switch-slide__lbl:before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 50px;
}
.switch-slide__inp {
  position: absolute;
  opacity: 0
}

.switch-slide__lbl {
  display: inline-block;
  font-size: 13px;
  line-height: 1.3;
  transition: all .2s ease;
  position: relative;
  z-index: 2
}
.switch-slide__item:first-child {
  position: relative;
}
.switch-slide__control {
  border: 2px solid #DCE7F1;
  background-color: #fff;
  border-radius: 12px;
  height: 19px;
  width: 35px;
  position: absolute;
  transform: translate(5px,-1px);
}
.switch-slide__control:before {
  background-color: #42A5F5;
  border-radius: 50%;
  content: '';
  height: 12px;
  width: 12px;
  position: absolute;
  top: 2px;
  left: 18px;
  transition: all .2s ease;
}
.switch-slide__inp:checked~.switch-slide__lbl {
  font-weight: 700;
  z-index: 1;
}
.switch-slide__control {
  top: 3px;
  right: 5px;
  transform: none;
}
.switch-slide__inp:checked~.switch-slide__control:before {
  left: 3px
}
.user-avatar{
  border-radius: 50%;
}
.project__activity{
  width: 30px;
  height: 30px;
  display: inline-block;
  background: var(--purple);
  border-radius: 100rem;
  margin: 4px 7px 0 0;
}
.input_error_text{

}
.nch-button {
    align-items: center;
    background-color: #091E420F;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    box-sizing: border-box;
    color: #172B4D;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 400;
    font-weight: 500;
    justify-content: center;
    line-height: 20px;
    padding: 6px 12px;
    text-decoration: none;
    transition-duration: 85ms;
    transition-property: background-color, border-color, box-shadow;
    transition-timing-function: ease;
    white-space: normal;
}
.nch-button:hover {
    background-color: #091E4224;
    border: none;
    box-shadow: none;
    color: #172B4D;
    text-decoration: none;
}
.nch-button--primary {
    background-color: #0C66E4;
    border: none;
    box-shadow: none;
    color: #FFFFFF;
}
.nch-button--primary:hover {
    background-color: #0055CC;
    border: none;
    box-shadow: none;
    color: #FFFFFF;
    text-decoration: none;
}
.checklist-title h3 {
    margin: 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.checklist-title {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.checklist-title-edit{
  display: none;
  position: relative;
}
.checklist-title-input{

}
.edit {
    display: none;
    position: relative;
}
.editing .hide-on-edit {
    display: none !important;
}
.editable .current {
    cursor: pointer;
}
.editing .edit {
    display: block;
    padding-bottom: 8px;
    width: 100%;
    z-index: 50;
}
.checklist-title-input:active {
    background: #FFFFFF;
    border-color: #388BFF;
    box-shadow: inset 0 0 0 2px #388BFF;
    margin-bottom: 4px;
}
.checklist-progress-percentage {
    color: #44546F;
    font-size: 11px;
    left: 0;
    line-height: 10px;
    position: absolute;
    text-align: center;
    top: -1px;
    width: 32px;
}
.checklist-title-input.active{
    overflow: hidden;
    overflow-wrap: break-word;
    resize: none;
    height: 54px;
}
.checklist-title .window-module-title-options .hide {
    display: none;
}
.checklist-progress-bar {
    background: #E4E6EA;
    border-radius: 4px;
    clear: both;
    height: 8px;
    margin: 0 0 0 40px;
    overflow: hidden;
    position: relative;
}
.checklist-progress-bar-current {
    background: #579DFF;
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    transition-duration: .14s;
    transition-property: width, background;
    transition-timing-function: ease-in;
}
.checklist-progress-bar-current.checklist-progress-bar-current-delay {
    transition-delay: .2s;
}
.checklist-progress-percentage {
    color: #9FADBC;
    font-size: 11px;
    left: 0;
    line-height: 10px;
    position: absolute;
    text-align: center;
    top: -1px;
    width: 32px;
}
.checklist__title {
    margin: 0 0 4px 40px;
    padding: 8px 0;
    position: relative;
}
.checklist-progress {
    margin-bottom: 6px;
    position: relative;
}
.checklist-item {
    border-radius: 12px;
    box-sizing: border-box;
    clear: both;
    padding-left: 40px;
    position: relative;
    transform-origin: left bottom;
    transition-duration: .15s;
    transition-property: transform, opacity, height, padding, margin, background-color;
    transition-timing-function: ease-in;
}
.checklist-item-checkbox {
    cursor: pointer;
    left: 2px;
    margin: 6px;
    position: absolute;
    text-align: center;
    top: 4px;
}
.checklist-item-checkbox input[type=checkbox] {
    cursor: pointer;
    height: 16px;
    margin: 0;
    width: 16px;
}
.checklist-item-details {
    word-wrap: break-word;
    border-radius: 12px;
    margin: 0 0 0 -8px;
    overflow-wrap: break-word;
    padding: 6px 8px;
    word-break: break-word;
}
.checklist-item-details:hover {
    background-color: #091E420F !important;
}
.checklist-new-item{
  margin-top: 8px;
}
.checklist-add-controls {
    display: none;
    margin-top: 8px;
}
.u-gutter {
    margin-left: 40px;
}
.checklist-item-state-complete .checklist-item-details-text {
    color: #44546F;
    text-decoration: line-through;
}
.editing .checklist-add-controls {
    display: flex;
    flex-direction: row;
}
.checklist-new-item.editing textarea.checklist-new-item-text, .checklist-new-item.editing textarea.checklist-new-item-text:focus, .checklist-new-item.editing textarea.checklist-new-item-text:hover {
    background-color: #ffffff;
    box-shadow: inset 0 0 0 2px #388bff;
    color: #172B4D;
    cursor: text;
    float: none;
    resize: none;
    width: 100%;
}
.nch-button.mod-submit-edit, input.mod-submit-edit {
    float: left;
    margin: 0 4px 0 0;
}
.nch-button--subtle {
    background-color: initial;
    border: none;
    box-shadow: none;
}
.checklist-item-details .checklist-item-row .checklist-item-text-and-controls {
    display: inline-flex;
    width: 100%;
}
.checklist-item-details-text {
    align-self: center;
    flex: 1;
    margin-bottom: 0;
    min-height: 20px;
}
.editing .edit .field, .editing .edit .field:active {
    background: #ffffff;
    border-color: #388bff;
    box-shadow: inset 0 0 0 2px #388bff;
    margin-bottom: 4px;
}
.checklist-item-details.editing, .checklist-item-details:hover {
    background-color: #091e420f !important;
}
.checklist-item-details.editing {
    padding: 8px;
}
.edit-controls {
    clear: both;
    display: flex;
    flex-direction: row;
    margin-top: 8px;
}
.edit-controls .edit-controls-spacer {
    flex: 1;
}
.icon-lg, .icon-md, .icon-sm {
    display: inline-block;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    vertical-align: bottom;
}
.icon-close:before {
    content: "\2716";
}
.icon-lg, .icon-md, .icon-sm {
    color: #44546f;
}
.icon-lg, .icon-md {
    height: 32px;
    line-height: 32px;
    width: 32px;
}
.icon-lg {
    font-size: 24px;
}
.checklist-title-input{
  overflow: hidden;
  overflow-wrap: break-word;
  resize: none;
  min-height: 54px;
}
.checklist-new-item-text{
  overflow: hidden;
  overflow-wrap: break-word;
  min-resize: none;
  height: 36px;
}
.icon-checklist {
  left: -40px;
  position: absolute;
  top: 16px;
}
.icon-checklist:before {
  content: "";
  background: url(/images/task/checklist.svg) no-repeat center center;
  display: block;
  height: 25px;
  background-size: 25px 25px;
}
.hide-completed-items .checklist-item-state-complete {
  display: none;
}
/* Tooltip container */
.tooltip {
  position: relative;
  display: flex;
  align-items: center;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 364px;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 10;
}
.tooltip-bottom-left {
    top: 100%;
    right: 0;
}
.tooltip-bottom-right{
  top: 100%;
  left: 0;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
blockquote .tooltip:hover .tooltiptext{
  visibility: hidden;
}
.tooltip-info-wrap {
    position: relative;
    display: flex;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    color: #000;
    text-align: left;
    box-shadow: 0 6px 21px 0 rgba(83,92,105,.15);
}
.tooltip-info-leftcolumn {
    margin: 0 17px 0 0;
}
.tooltip-info-data {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    overflow: hidden;
}
.tooltip-info-data-photo{
  display: flex;
    width: 57px;
    height: 57px;
}
.tooltip-info-data-photo img{
    border-radius: 50%;
}
.tooltip-user-name{
    display: inline-block;
    max-width: 100%;
    font-size: 18px;
    color: #2066b0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-color: transparent;
    transition: -webkit-text-decoration-color .3s;
    transition: text-decoration-color .3s;
    transition: text-decoration-color .3s,-webkit-text-decoration-color .3s;
    white-space: nowrap;
}
.tooltip-user-name:hover{
    text-decoration: underline;
    transition-duration: 0;
}
.tooltip-user-position {
    display: block;
    font-size: 13px;
    color: #828b95;
}
.tooltip-field-row {
    display: block;
    margin: 0 0 6px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}
.tooltip-info-data .tooltip-info-data-info {
    font-size: 11px;
    color: #828b95;
}
.tooltip-info-data .tooltip-info-data-info .tooltip-field-name {
    font-weight: normal;
}
.tooltip-info-data .tooltip-info-data-info .tooltip-field-value, .tooltip-info-data .tooltip-info-data-info .tooltip-field-value a {
    font-size: 12px;
    color: #333;
}
.form-task__timing label input[type="text"]{
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
    border: 3px dashed transparent;
    width: 230px;
    padding: 7px 12px;
}  
/* Затемняющий фон */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Черный цвет с 50% прозрачностью */
    z-index: 1100; /* Расположить выше других элементов */
}
/* Прелоадер */
#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1101; 
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.loader__spinner {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

#progressCircle {
    transform: rotate(-90deg);
    transform-origin: center;
}

.loader__progressText {
    position: absolute;
    font-weight: bold;
    font-size: 12px;
    color: #3498db;
}

.calendar-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f9fc;
    border-radius: 8px;
}

/*.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.view-options button {
    margin: 0 5px;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th, .calendar-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.calendar-table td.outside-month {
    color: #bbb;
}

.today {
    background-color: #d8e7f4;
}*/
.calendar-container {
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.calendar-table {
    display: flex;
    flex-direction: column;
}

.calendar-row {
    display: flex;
}

.calendar-cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    height: 50px;
    font-weight: bold;
}
.calendar-day {
    flex:1;
    display: flex;
    flex-direction: column;
    padding: 5px;
    border: 1px solid #ddd;
    position: relative;
    overflow-y: auto;
    height: 80px;
}

.day-number {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: right;
}

.tasks-container {
    flex-grow: 1;
}

.outside-month {
    color: #999;
}

.today {
    background-color: #f0f8ff;
    border: 2px solid #000;
}
.calendar-table .task{
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 10px;
  line-height: 10px;
  height: 15px;
  border-radius: 5px;
  margin: 0 5px 0 1px;
  padding: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.wrong{
  border: 1px solid red!important;
}
.hidden{
  display: none;
}
.bold{
  font-weight: 700
}