@charset "utf-8";

/* TASKMANAGER */
.ts_parent {
    display: flex;
    overflow-x: auto;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    background-color: white;
}

.ts_column_parent {
    min-width: 220px;
    position: relative;
    display: flex;
    border-right: 1px solid #afafaf;
    border-right-style: dotted;
    flex-direction: column;
    min-height: 0;
}

.ts_column_header {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11pt;
    position: relative;
    overflow-y: visible;
    width: auto;
}

.ts_column_header_label {
    position: absolute;
    left: auto;
    right: 0;
    width: auto;
    height: auto;
    top: auto;
    bottom: 0px;
    font-size: 8pt;
    font-weight: bold;
    margin: 2px 5px;
    color: #505050;
}

.ts_column_body {
    display: flex;
    position: relative;
    flex-direction: column;
    overflow-y: auto;
    padding-bottom: 10px;
}

.ts_item_parent {
    position: relative;
    width: auto;
    height: auto;
    /*min-height: 100px;*/
    background-color: white;
    margin: 10px 6px 0px 6px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.ts_item_top_title {
    width: auto;
    position: relative;
    white-space: normal;
    height: auto;
    font-size: 9pt;
    color:#545454;
    padding: 3px;
    font-weight: bold;
}

.ts_item_top_title_tag {
    font-weight: normal;
    color: #ffffff;
    background-color: #6699cc;
    padding: 1px;
    border-radius: 3px;
}

.ts_item_name {
    width: auto;
    position: relative;
    white-space: normal;
    height: auto;
    color: #2f5e8d;
    font-weight: 700;
    padding: 0px 5px 0px 5px;
    margin-bottom: 3px
}

.ts_item_phone {
    width: auto;
    position: relative;
    white-space: normal;
    height: auto;
    display: flex;
    justify-content: end;
    padding: 0 5px 0 5px;
    border-radius: 5px;
    margin-bottom: 3px
}

.ts_item_phone_text {
    height: auto;
    position: relative;
    width: auto;
}

.ts_item_phone_text:hover {
    text-decoration: underline;
}

.ts_item_comment {
    width: auto;
    position: relative;
    white-space: normal;
    height: auto;
    color: #4E4E4EFF;
    font-size: 10pt;
    padding: 0 5px 0 5px;
    margin-bottom: 3px
}

.ts_item_parent:hover {
    opacity: 1;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.ts_column_body::-webkit-scrollbar-thumb {
    background: #69c;
    border-radius: 4px;
}

.ts_parent::-webkit-scrollbar {
    height: 8px; /* Толстая полоса */
}


.ts_parent::-webkit-scrollbar-thumb {
    background: #4c7fb2e6;
    border-radius: 4px;
}

.ts_small_button {
    display: none; /* Изначально скрыт */
    opacity: 0;    /* Полностью прозрачный */
    transition: opacity 1s ease; /* Плавное изменение opacity */
}

.ts_small_button:hover {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.ts_small_button.ts_visible {
    display: block; /* Показываем элемент */
    animation: fadeIn 0.5s ease 0.4s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}