@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

.color-green {
	color: #159C2A !important;
}

.color-red {
	color: #D04437 !important;
}

.hidden {
    display: none !important;
}

.approval {
	font-family: 'Urbanist', sans-serif;
}

.approval-grid {
	display: grid;
	grid-template-columns: 284px 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

/* ==========================================================================
   Goal Chart (HTML/CSS Conic Gradient Version)
   ========================================================================== */

/* Реєструємо кастомну властивість для анімації */
@property --p {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}

.approval-amount__graphs {
    display: flex;
    justify-content: space-around;
    text-align: center;
	flex-direction: column;
}

.approval-amount__graph {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
    padding: 37px 15px;
}

.progress-circle {
	position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    
    /* Створення кругової шкали за допомогою градієнта */
    background: conic-gradient(from 180deg, var(--fill-color, #159C2A) calc(var(--p, 0) * 1%), #F2F2F2 0);
    
    /* Анімація заповнення */
    transition: --p 1.5s ease-in-out;
}

/* Створюємо отвір в центрі, щоб вийшов "бублик" */
.progress-circle::before {
    content: '';
    display: block;
    width: 75%;
    height: 75%;
    background: #fff;
    border-radius: 50%;
}

.progress-circle__value {
	position: absolute;
    font-size: 16px;
    font-weight: 500;
    color: #232323;
}

/* Додаткові стилі для тексту під колами */
.goal-item__details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px; /* Невелика відстань між назвою та повною сумою */
}

.goal-item__full-value {
    font-size: 24px;
    font-weight: 700;
    color: #232323;
    line-height: 29px;
}

.goal-item__label {
	font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    color: #232323;
	text-transform: capitalize;
}

/* ==========================================================================
   approval-amount Section Styles
   ========================================================================== */

.approval-amount {
	background-color: #fff;
    border-radius: 3px;
    border: 1px solid #EEEEEE;
}

/* --- approval-amount Header --- */

.approval-amount__header {
	padding: 16px 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px; /* Space between title and stats */
	border-bottom: 1px solid #EEEEEE;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.approval-amount__header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.approval-amount__header-nav .approval__switch-btn {
    width: 40px;
    height: 40px;
    padding: 0;
}

.approval-amount__header-nav .approval__switch-btn svg path {
    stroke: #808080;
    transition: stroke .2s ease-in-out;
}

.approval-amount__header-nav .approval__switch-btn:hover svg path {
    stroke: #fff;
}

.approval-amount__header-nav .approval__switch-btn--active svg path,
.approval-amount__header-nav .approval__switch-btn--active:hover svg path {
    stroke: #fff;
}

.approval-amount__header--date {
    background-color: #159C2A;
}

.approval-amount__title {
    font-size: 18px;
	line-height: 22px;
    font-weight: 600;
    color: #232323;
}

.approval-amount__header--date .approval-amount__title {
    color: #fff;
}

.approval-amount__body {
	padding: 24px;
}

.approval-amount__stats {
    display: flex;
    gap: 30px;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 24px;
    flex-wrap: wrap;
}

.approval-amount__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	gap: 5px;
}

.approval-amount__label {
    font-size: 16px;
	line-height: 19px;
    color: #071C0C;
	text-transform: capitalize;
}

.approval-amount__value {
    font-size: 24px;
	line-height: 29px;
    font-weight: 700;
    color: #1B1B1B;
}

.approval-amount__option {
	color: #646564;
	font-size: 12px;
	line-height: 14px;
}

/* --- Chart Container --- */

.approval-amount__chart_container {
    width: 100%;
    height: 350px; /* Define a fixed height for the chart container */
    position: relative;
}

/* Ensure canvas takes full width and height of its container */
#approvalApprovalAmountChart {
    width: 100% !important;
    height: 100% !important;
}

/* ==========================================================================
   Users Bar Chart
   ========================================================================== */

.users-chart__container {
    display: flex;
    width: 100%;
    height: calc(350px + 96px); /* Same as line chart container */
    position: relative;
}

.users-chart__no-data {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #808080;
    font-size: 18px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.users-chart__yaxis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex-shrink: 0;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    color: #1B1B1B;
    font-weight: 300;
    text-align: right;
    /* Добавлено для отступа под именами */
    padding: 21px 10px 29px;
}

.users-chart__yaxis-label {
    position: relative;
    top: -7px; 
}

.approval-grid > .approval-amount {
    min-width: 0;
}

.users-chart__scroll-wrapper {
    flex-grow: 1;
    overflow-x: auto;
    position: relative;
    min-width: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 21px 0 29px;
}
.users-chart__scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.users-chart__grid {
    position: absolute;
    top: -7px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
    /* Добавлено для отступа под именами и нижней линии */
    padding-bottom: 25px;
    padding: 21px 0 29px 0;
}

.users-chart__grid-line {
    width: 100%;
    height: 14px;
    background-color: transparent;
    position: relative;
}

.users-chart__grid-line:first-child,
.users-chart__grid-line:last-child {
    opacity: 1;
}

.users-chart__grid-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #E8E9E8;
}

/* Удалено правило для :last-child, т.к. теперь есть border-bottom у контейнера */


.users-chart__bars {
    display: flex;
    align-items: flex-end; /* Выравнивание по низу внутри padding-области */
    position: relative;
    z-index: 2;
    height: 100%;
    /* Изменены gap и padding */
    gap: 0;
    top: -7px;
    padding: 6px 0;
}

/* Новый класс для растягивания колонок */

.user-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
    height: 100%;
    /* Изменена минимальная ширина */
    width: 150px;
    padding: 0 35px 0;
    position: relative; /* Необходимо для вертикальной линии */
}

.user-bar--empty {
    pointer-events: none; /* Чтобы на пустые колонки нельзя было кликнуть */
}

.user-bar:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #CDE3D0;
    width: 1px;
    right: 0;
}


.user-bar__visuals {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.user-bar__avatar-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.user-bar__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    object-fit: cover;
    z-index: 2;
    margin-bottom: 0;
}

.user-bar__info {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #EEEEEE;
    border-radius: 3px;
    padding: 5px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 5;
    font-family: 'Urbanist', sans-serif;
}

.user-bar__info-amount {
    font-weight: 700;
    font-size: 14px;
    color: #159C2A;
}

.user-bar__labels {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-family: 'Urbanist', sans-serif;
    color: #2D7939;
    white-space: nowrap;
    position: relative;
    top: 0;
    z-index: 3;
}

.user-bar__earned-bar--above ~ .user-bar__avatar-wrapper .user-bar__labels {
    color: #fff;
}

.user-bar__info-units {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.user-bar__progress {
    width: 100%;
    position: relative; /* Changed from absolute */
    border-radius: 3px 3px 0 0;
    overflow: visible; /* Allows avatar to sit on top */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.user-bar__earned-amount-label {
    position: static;
    font-size: 12px;
    font-weight: 600;
    width: auto;
    text-align: center;
    padding: 0;
    line-height: 1;
    letter-spacing: -.02em;
}

.user-bar__earned-amount-label--on-bar {
    color: #fff;
}

.user-bar__goal-bar {
    width: 100%;
    height: 100%;
    background-color: #0D661A1A;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0; /* Added radius here */
}

.user-bar__earned-bar {
    width: 100%;
    min-height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0; /* Added radius here */
}

.user-bar__earned-bar--above {
    background-color: #36B349;
}

.user-bar__earned-bar--below {
    background-color: #FF2E2E;
}

.user-bar__name {
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    color: #232323;
    white-space: nowrap;
    font-family: 'Urbanist', sans-serif;
    /* Позиционирование имени под графиком */
    position: absolute;
    top: calc(100% + 6px);
}

.user-bar__earned-content {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
    color: #fff;
}

.user-bar__earned-bar {
    overflow: visible; 
}

/* ==========================================================================
   KANBAN BOARD STYLES (ФІНАЛЬНА І РОБОЧА ВЕРСІЯ)
   ========================================================================== */

.kanban-board-wrapper {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}
.kanban-board-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.kanban-board__columns {
    display: flex;
    gap: 10px;
    min-height: 600px;
    align-items: flex-start; /* Вирівнюємо по верху */
}

/* --- Колонка --- */
.kanban-column {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
	border: 1px solid #EEEEEE;
	background-color: #fff;
	border-radius: 3px;
}
.kanban-column__header {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 10px 14px;
    gap: 14px;
}

.kanban-column__header img {
	border-radius: 50%;
    width: 45px;
    border: 1px solid #eee;
    height: 45px;
    object-fit: cover;
}

.kanban-column__header-data {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	gap: 5px;
}
.kanban-column__username {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #232323;
}

.kanban-column__header-info {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.kanban-column__header-info-value {
	font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #159C2A;
}

.kanban-column__header-info-deals {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	color: #8B928C;
}

.kanban-column__header-info-deals::before {
	content: '';
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: #8B928C;
}

.kanban-column__add-btn {
	width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #D6F2D5;
    cursor: pointer;
    margin: 0 auto;
}

.kanban-column__add-btn svg {
	width: 25px;
}

.kanban-column__body {
	display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    padding: 0 10px 10px;
}

/* --- Блок статусу --- */
.status-block {
	display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #F8F9FA;
	border-radius: 3px;
    padding: 6px 10px 8px;
}
.status-block--approved { background-color: #FBE42233; color: #EB9B00; }
.status-block--term-sheet-sent { background-color: #01A7DB33; color: #01A7DB; }
.status-block--contracts-out { background-color: #EBFFEE; color: #159C2A; }
.status-block--contracts-in { background-color: #A1D7AA; color: #0D661A; }
.status-block--killed-in-final { background-color: #FFE5E3; color: #D04437; }

.status-block__header {
    padding: 2px 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-block__header-start {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: flex-start;
}

.status-block__header-start::before {
	content: '';
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.status-block--approved .status-block__header-start::before { 
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='20' viewBox='0 0 17 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.25H9.98127L13.3155 4.26066V17.447H1V1.25Z' fill='white' fill-opacity='0.5' stroke='%23EB9B00' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.9812 1.25V4.26066H13.3154' stroke='%23EB9B00' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.661 15.3219C15.8482 13.4296 14.4659 11.7438 12.5736 11.5566C10.6812 11.3693 8.99543 12.7516 8.80822 14.6439C8.621 16.5363 10.0033 18.2221 11.8956 18.4093C13.7879 18.5965 15.4737 17.2142 15.661 15.3219Z' fill='white' stroke='%23EB9B00' stroke-width='1.2' stroke-miterlimit='10'/%3E%3Cpath d='M10.384 14.7179L11.7246 16.1092L14.0881 13.8516' stroke='%23EB9B00' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	width: 17px;
	height: 20px; 
}
.status-block--term-sheet-sent .status-block__header-start::before { 
	background-image: url("data:image/svg+xml,%3Csvg width='26' height='16' viewBox='0 0 26 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.8135 1.19718L8.52832 6.29688L11.7945 14.8057L25.0797 9.70598L21.8135 1.19718Z' fill='%23E6F6F5' stroke='%2301A7DB' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.52905 6.29592L17.088 8.73986L21.8137 1.19531' stroke='%2301A7DB' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.7942 14.8043L14.9516 8.12891' stroke='%2301A7DB' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M25.0802 9.70283L18.2686 6.85547' stroke='%2301A7DB' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.82229 4.03516H1' stroke='%2301A7DB' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.01396 6.85547H2.65405' stroke='%2301A7DB' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.13193 9.70312H3.93677' stroke='%2301A7DB' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A"); 
	width: 26px;
	height: 16px; 
}
.status-block--contracts-out .status-block__header-start::before { 
	background-image: url("data:image/svg+xml,%3Csvg width='113' height='146' viewBox='0 0 113 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_711_1834)'%3E%3Cpath d='M62.8101 128.32H89.3501' stroke='%23159C2A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M108.92 29.64H80.51V4H4V141.98H108.92V29.64Z' stroke='%23159C2A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M108.92 29.64H80.5098V4L108.92 29.64Z' stroke='%23159C2A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22.5498 75.0117H90.3698' stroke='%23159C2A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22.5498 95.5234H56.7498' stroke='%23159C2A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22.5498 54.5117H90.3698' stroke='%23159C2A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_711_1834'%3E%3Crect width='112.92' height='145.98' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	width: 13px;
	height: 18px;
}
.status-block--contracts-in .status-block__header-start::before { 
	background-image: url("data:image/svg+xml,%3Csvg width='113' height='146' viewBox='0 0 113 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38.72 141.61H4V4H80.3L108.63 29.58V84.71' stroke='%23159C2A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.9902 36.1484H54.6802' stroke='%23159C2A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.9902 54.1172H87.6302' stroke='%23159C2A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.9902 72.0898H87.6302' stroke='%23159C2A' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M100.32 117.012C98.7901 117.052 93.5501 117.482 90.4401 121.672C90.1301 122.022 89.8301 122.412 89.5601 122.822C89.3301 123.152 88.8601 123.812 88.7601 123.812C88.1101 123.812 86.6701 122.582 85.8501 120.902C85.7901 120.762 85.6901 120.612 85.5801 120.492C83.6601 118.112 81.2401 119.692 80.3401 120.282C79.9501 120.532 79.6001 120.772 79.0701 121.002C78.0701 121.512 77.5401 121.662 77.2901 121.682C77.1301 121.272 76.9801 120.372 76.8801 119.732C76.6301 118.132 76.3101 116.142 75.0201 114.682C74.9601 114.622 74.9001 114.542 74.8201 114.472C73.3501 113.222 71.1201 113.262 68.9301 114.612C67.4801 115.602 66.2301 116.972 64.9201 118.432C62.8501 120.712 60.7301 123.092 57.7401 124.092C55.5701 124.692 54.0001 124.482 52.8701 123.352C60.0101 117.192 64.0801 110.262 64.0801 103.852C64.2801 100.872 62.6301 97.8416 60.0501 96.4416C57.8801 95.2716 55.5101 95.5016 53.6701 96.9116C47.9401 100.652 44.7501 114.422 47.5901 122.322C45.9901 123.512 44.2301 124.702 42.2701 125.852C41.2901 126.422 40.9801 127.682 41.5501 128.662C41.9401 129.322 42.6101 129.672 43.3101 129.672C43.6601 129.672 44.0301 129.592 44.3501 129.382C46.2301 128.252 48.0101 127.082 49.6501 125.872C51.8401 128.292 55.0701 129.072 58.9401 127.982C63.0301 126.602 65.7701 123.592 67.9401 121.152C69.0901 119.882 70.1701 118.692 71.1301 118.012C71.5801 117.722 71.9901 117.622 72.1101 117.562C72.4801 118.202 72.6601 119.302 72.8301 120.312C73.1401 122.202 73.4601 124.352 75.3901 125.322C77.2701 126.282 79.4601 125.362 80.7701 124.662C81.4901 124.372 82.1001 123.982 82.5701 123.652C82.5901 123.652 82.6301 123.612 82.6701 123.592C83.8801 125.562 86.1101 127.962 88.9901 127.862C91.0601 127.702 92.1401 126.182 92.8601 125.152C93.0401 124.882 93.2501 124.622 93.5801 124.232C95.2601 121.972 98.2001 121.132 100.39 121.072C101.52 121.052 102.42 120.112 102.39 118.982C102.36 117.852 101.49 116.972 100.3 116.972V117.012H100.32ZM56.0501 100.282C56.4401 99.9716 56.8301 99.8316 57.2401 99.8316C57.5301 99.8316 57.8301 99.9116 58.1401 100.082C59.2901 100.702 60.1001 102.232 60.0201 103.712C60.0201 107.842 57.5001 113.662 51.0601 119.512C49.5901 112.962 52.4101 102.662 56.0701 100.282H56.0501Z' fill='%23159C2A' stroke='%23159C2A' stroke-width='2.54' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	width: 13px;
	height: 18px;
}
.status-block--killed-in-final .status-block__header-start::before { 
	background-image: url("data:image/svg+xml,%3Csvg width='13' height='18' viewBox='0 0 13 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_629_2509)'%3E%3Cpath d='M4.48345 16.4114H0.511963V1H9.24923L12.497 3.86643V10.0396' stroke='%23D04437' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.33887 4.60156H6.31035' stroke='%23D04437' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.33887 6.61328H10.0877' stroke='%23D04437' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.33887 8.625H10.0877' stroke='%23D04437' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.80444 11.9648L11.9497 16.9984' stroke='%23D04437' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.729 11.9648L6.58374 16.9984' stroke='%23D04437' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_629_2509'%3E%3Crect width='13' height='17' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	width: 13px;
	height: 18px;
}

.status-block__header-title {
	font-size: 15px;
    line-height: 18px;
    font-weight: 600;
}

.status-block__header-title span {
	font-weight: 400;
}

/* --- Контейнер для карток --- */
.status-block__cards {
	min-height: 90px;
    display: flex;
    flex-direction: column;
}

/* --- Картка --- */
.kanban-card {
	background-color: #fff;
    border-radius: 3px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.kanban-card:not(:first-child) {
	margin-top: 6px;
}
.kanban-card__start {
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: flex-start;
}
.kanban-card__title {
    font-weight: 600;
    font-size: 15px;
	line-height: 20px;
    color: #232323;
    cursor: grab;
    width: 100%;
}
.kanban-card__days {
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #727272;
}
.kanban-card__info {
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	color: #727272;
}

.kanban-card__end {
	display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: flex-end;
}

.kanban-card__fists {
	width: 37px;
	height: 27px;
    background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.kanban-card__fists:not(.show) {
	opacity: 0;
	visibility: 0;
}
/* .status-block--approved .kanban-card__fists { background-image: url("data:image/svg+xml,%3Csvg width='37' height='27' viewBox='0 0 37 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.867 2.92453C13.0881 2.7056 13.4455 2.70783 13.6644 2.929L15.6458 4.93064C15.8647 5.1518 15.8625 5.50924 15.6413 5.72817C15.4202 5.9471 15.0628 5.94487 14.8439 5.7237L12.8625 3.72206C12.6436 3.5009 12.6458 3.14346 12.867 2.92453Z' fill='%23EB9B00'/%3E%3Cpath d='M17.875 3.74861C17.875 4.05914 18.1252 4.31158 18.4357 4.31381C18.7462 4.31381 18.9986 4.06584 19.0031 3.75532L19.0209 0.569664C19.0209 0.419988 18.9628 0.274779 18.8579 0.169782C18.7529 0.0647853 18.6099 0 18.4602 0C18.3106 0 18.1654 0.0580834 18.0604 0.16308C17.9554 0.268077 17.8951 0.411052 17.8951 0.560728L17.8772 3.74638L17.875 3.74861Z' fill='%23EB9B00'/%3E%3Cpath d='M19.0141 22.4754C19.0141 22.1648 18.7639 21.9124 18.4534 21.9102C18.1429 21.9102 17.8905 22.1581 17.886 22.4687L17.8682 25.6543C17.8682 25.9648 18.1183 26.2195 18.4288 26.2217C18.7393 26.224 18.994 25.9715 18.9962 25.661L19.0141 22.4754Z' fill='%23232323'/%3E%3Cpath d='M24.0271 22.501L22.0458 20.4993C21.8269 20.2781 21.4695 20.2759 21.2483 20.4948C21.0272 20.7138 21.0249 21.0712 21.2439 21.2924L23.2252 23.294C23.4441 23.5152 23.8015 23.5174 24.0227 23.2985C24.2438 23.0796 24.246 22.7221 24.0271 22.501Z' fill='%23232323'/%3E%3Cpath d='M15.6727 20.4642C15.4538 20.243 15.0964 20.2408 14.8753 20.4597L12.8738 22.4412C12.6527 22.6602 12.6504 23.0176 12.8693 23.2388C13.0882 23.4599 13.4457 23.4622 13.6668 23.2432L15.6683 21.2617C15.7732 21.1567 15.8358 21.0137 15.8358 20.864C15.8358 20.7144 15.7777 20.5714 15.6727 20.4642Z' fill='%23232323'/%3E%3Cpath d='M21.217 5.75907C21.322 5.86407 21.4649 5.92662 21.6146 5.92662C21.7643 5.92662 21.9072 5.86854 22.0145 5.76354L23.6161 4.17965C23.8372 3.96072 23.8394 3.60329 23.6205 3.38212C23.4016 3.16096 23.0442 3.15872 22.8231 3.37765L21.2215 4.96154C21.0003 5.18047 20.9981 5.53791 21.217 5.75907Z' fill='%23EB9B00'/%3E%3Cpath d='M18.6748 11.5057C18.5989 11.3158 18.4939 11.137 18.3598 10.9829C18.2213 10.8243 18.0516 10.6903 17.8505 10.592C17.9176 10.4892 17.9734 10.3775 18.0203 10.2636C18.1141 10.029 18.161 9.77879 18.161 9.53082C18.161 9.28285 18.1141 9.03488 18.0203 8.80031C17.7724 8.1815 17.2094 7.69896 16.3383 7.69896H14.2095C14.1 7.20525 13.8789 6.82771 13.5036 6.54399C12.9653 6.13294 12.15 5.97656 10.9102 5.97656C8.89312 5.97656 8.12917 6.97738 7.32501 8.02512C6.71295 8.82265 6.0741 9.65369 4.65789 9.9106C4.60874 9.75645 4.52163 9.61795 4.41217 9.50848C4.229 9.32529 3.97882 9.2136 3.70407 9.2136H1.40551C1.13076 9.2136 0.880578 9.32529 0.699643 9.50848C0.516474 9.68943 0.404785 9.93964 0.404785 10.2167V18.0333C0.407019 18.3104 0.518707 18.5606 0.701877 18.7415C0.882812 18.9225 1.13299 19.0364 1.40775 19.0364H3.7063C3.98105 19.0364 4.23124 18.9225 4.4144 18.7415C4.49929 18.6544 4.57077 18.5539 4.62215 18.4399C5.27664 18.7504 5.85965 18.985 6.4315 19.1548C7.17088 19.376 7.88345 19.481 8.68314 19.481H15.2259C16.0993 19.4787 16.6599 18.9962 16.9079 18.3774C17.0017 18.1428 17.0486 17.8926 17.0486 17.6446C17.0486 17.3967 17.0017 17.1464 16.9079 16.9141C16.8811 16.8471 16.8498 16.7801 16.8163 16.7175C17.4127 16.5723 17.8081 16.1657 18.0069 15.672C18.1007 15.4397 18.1476 15.1895 18.1454 14.9415C18.1454 14.6935 18.0985 14.4433 18.0047 14.2088C17.96 14.0971 17.9042 13.9898 17.8371 13.8871C18.0896 13.7642 18.2928 13.5877 18.447 13.3755C18.5408 13.2504 18.6167 13.1141 18.6748 12.9689C18.7686 12.7343 18.8155 12.4841 18.8155 12.2362C18.8155 11.9882 18.7686 11.738 18.6748 11.5057ZM3.7063 18.0736H1.40775C1.38764 18.0736 1.36754 18.0534 1.36754 18.0333V10.2167C1.36531 10.1943 1.38541 10.1764 1.40551 10.1764H3.70407C3.72417 10.1764 3.74204 10.1943 3.74427 10.2167V18.0333C3.74651 18.0534 3.7264 18.0736 3.7063 18.0736ZM14.2988 8.66404H16.3383C16.756 8.6618 17.0173 8.8785 17.129 9.15775C17.1759 9.27168 17.1983 9.40125 17.1983 9.53082C17.1983 9.66039 17.1759 9.7922 17.129 9.90613C17.0173 10.1854 16.756 10.4021 16.3383 10.4021H14.2988V8.66404ZM10.3116 18.3796C10.3317 18.4265 10.3518 18.4734 10.3741 18.5181H8.68314C7.9728 18.5181 7.34735 18.4265 6.69955 18.2344C6.0875 18.0534 5.45087 17.7831 4.70703 17.4168V10.8734C6.56329 10.592 7.34064 9.57997 8.08672 8.60819C8.74122 7.75481 9.36668 6.93941 10.9124 6.93941C11.9355 6.93941 12.5721 7.03994 12.9206 7.30578C13.2244 7.53811 13.3339 7.96704 13.3339 8.64617C13.3339 8.6618 13.3361 8.67521 13.3361 8.68861V13.8469C13.3361 14.1552 13.2333 14.345 13.0814 14.4366C13.0055 14.4791 12.9117 14.5059 12.8067 14.5126C12.7732 14.5171 12.7374 14.5171 12.6995 14.5171C12.6771 14.5171 12.6548 14.5148 12.6302 14.5126C12.4694 14.4992 12.3019 14.4545 12.1343 14.3786C11.6161 14.1462 11.1559 13.6413 11.1559 12.9756V9.33423C11.1559 9.06839 10.9415 8.85392 10.6757 8.85392C10.4098 8.85392 10.1932 9.06839 10.1932 9.33423V9.88826C9.88268 10.5652 9.494 11.184 9.03161 11.7402C8.54688 12.3255 7.97727 12.8438 7.32501 13.2995C7.10833 13.4515 7.05472 13.7508 7.20662 13.9675C7.35852 14.1842 7.65561 14.2378 7.87228 14.0859C8.33244 13.7642 8.75462 13.4157 9.13883 13.0382C9.20138 13.1789 9.28179 13.3129 9.38008 13.4336C9.49623 13.5743 9.63473 13.6994 9.79556 13.8022C9.6727 13.9653 9.58112 14.1485 9.51857 14.3428C9.42922 14.6243 9.40242 14.9303 9.44709 15.2208C9.4873 15.5179 9.59899 15.8083 9.77546 16.0563C9.94746 16.2931 10.1753 16.4919 10.4635 16.6192C10.4031 16.7131 10.354 16.8136 10.3116 16.9163C10.2177 17.1509 10.1708 17.4011 10.1708 17.6469C10.1708 17.8926 10.2177 18.145 10.3116 18.3796ZM10.1954 11.7983V12.9019C10.1708 12.8796 10.1463 12.855 10.1262 12.8282C9.99213 12.6651 9.92735 12.4484 9.92959 12.2295C9.92959 12.2228 9.92959 12.2004 9.92959 12.1669C9.92959 12.1624 9.93182 12.1557 9.93182 12.149C10.0212 12.0351 10.1083 11.9167 10.1932 11.7983H10.1954ZM16.0188 18.0199C15.9072 18.2992 15.6436 18.5159 15.2281 18.5159H11.9936C11.5781 18.5181 11.3168 18.3014 11.2028 18.0222C11.1559 17.906 11.1336 17.7787 11.1336 17.6469C11.1336 17.5151 11.1559 17.3877 11.2028 17.2716C11.3168 16.9945 11.5781 16.7756 11.9936 16.7756H15.2281C15.6436 16.7734 15.9072 16.9923 16.0188 17.2693C16.0658 17.3855 16.0881 17.5128 16.0881 17.6446C16.0881 17.7764 16.0658 17.9038 16.0188 18.0199ZM17.1179 15.3146C17.0062 15.5938 16.7426 15.8105 16.3271 15.8105H11.2497C10.9214 15.8128 10.6913 15.6832 10.5573 15.4955C10.4724 15.3771 10.421 15.2364 10.3987 15.089C10.3786 14.9348 10.3875 14.7762 10.4344 14.631C10.4702 14.5148 10.5305 14.4076 10.6131 14.3182C10.9013 14.7382 11.3101 15.0577 11.7434 15.2543C12.0115 15.3727 12.2907 15.4486 12.561 15.4687C12.6168 15.4754 12.6749 15.4754 12.7307 15.4754C12.7821 15.4754 12.8357 15.4754 12.8871 15.471C13.1328 15.4486 13.3651 15.3816 13.5684 15.2632H13.5729C13.9593 15.0376 14.2318 14.6511 14.2877 14.0725L16.3226 14.068C16.7381 14.068 17.0017 14.287 17.1134 14.564C17.1603 14.6801 17.1826 14.8097 17.1849 14.9393C17.1849 15.0711 17.1625 15.1984 17.1156 15.3146H17.1179ZM17.7858 12.6115C17.6718 12.8907 17.4105 13.1074 16.9928 13.1074H14.2988V11.3671H16.9928C17.4105 11.3649 17.6718 11.5838 17.7858 11.8631C17.8327 11.977 17.855 12.1044 17.855 12.2362C17.855 12.368 17.8327 12.4953 17.7858 12.6115Z' fill='%23232323'/%3E%3Cpath d='M3.74632 18.0366C3.74632 18.0567 3.72622 18.0768 3.70612 18.0768H1.40757C1.38746 18.0768 1.36736 18.0567 1.36736 18.0366V10.2199C1.36512 10.1976 1.38523 10.1797 1.40533 10.1797H3.70388C3.72399 10.1797 3.74186 10.1976 3.74409 10.2199V18.0366H3.74632Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.1983 9.53086C17.1983 9.66267 17.1759 9.79224 17.129 9.90617C17.0173 10.1854 16.756 10.4021 16.3383 10.4021H14.2988V8.66408H16.3383C16.756 8.66185 17.0173 8.87854 17.129 9.15779C17.1759 9.27172 17.1983 9.40129 17.1983 9.53086Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.855 12.2362C17.855 12.368 17.8327 12.4954 17.7857 12.6115C17.6718 12.8908 17.4105 13.1075 16.9928 13.1075H14.2988V11.3672H16.9928C17.4105 11.365 17.6718 11.5839 17.7857 11.8631C17.8327 11.9771 17.855 12.1044 17.855 12.2362Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.1872 14.9416C17.1872 15.0734 17.1649 15.2007 17.1179 15.3169C17.0063 15.5961 16.7427 15.8128 16.3272 15.8128H11.2498C10.9215 15.815 10.6914 15.6855 10.5574 15.4978C10.4725 15.3794 10.4211 15.2387 10.3988 15.0912C10.3787 14.9371 10.3876 14.7785 10.4345 14.6333C10.4702 14.5171 10.5306 14.4099 10.6132 14.3205C10.9014 14.7405 11.3101 15.06 11.7435 15.2566C12.0115 15.375 12.2908 15.4509 12.5611 15.471C12.6169 15.4777 12.675 15.4777 12.7308 15.4777C12.7822 15.4777 12.8358 15.4777 12.8872 15.4733C13.1329 15.4509 13.3652 15.3839 13.5685 15.2655H13.573C13.9594 15.0399 14.2319 14.6534 14.2878 14.0748L16.3227 14.0703C16.7382 14.0703 17.0018 14.2892 17.1135 14.5663C17.1604 14.6824 17.1827 14.812 17.185 14.9416H17.1872Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M16.0883 17.6464C16.0883 17.7782 16.066 17.9055 16.019 18.0217C15.9074 18.3009 15.6438 18.5176 15.2283 18.5176H11.9938C11.5783 18.5199 11.317 18.3032 11.203 18.0239C11.1561 17.9078 11.1338 17.7804 11.1338 17.6486C11.1338 17.5168 11.1561 17.3895 11.203 17.2733C11.317 16.9963 11.5783 16.7774 11.9938 16.7774H15.2283C15.6438 16.7751 15.9074 16.9941 16.019 17.2711C16.066 17.3872 16.0883 17.5146 16.0883 17.6464Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M13.3361 8.69061V13.8489C13.3361 14.1572 13.2333 14.347 13.0814 14.4386C13.0055 14.4811 12.9117 14.5079 12.8067 14.5146C12.7732 14.5191 12.7374 14.5191 12.6995 14.5191C12.6771 14.5191 12.6548 14.5168 12.6302 14.5146C12.4694 14.5012 12.3019 14.4565 12.1343 14.3806C11.6161 14.1482 11.1559 13.6433 11.1559 12.9776V9.33623C11.1559 9.07039 10.9415 8.85593 10.6757 8.85593C10.4098 8.85593 10.1932 9.07039 10.1932 9.33623V9.89026C9.88268 10.5672 9.494 11.186 9.03161 11.7422C8.54688 12.3275 7.97727 12.8458 7.32501 13.3015C7.10833 13.4535 7.05472 13.7528 7.20662 13.9695C7.35852 14.1862 7.65561 14.2398 7.87228 14.0879C8.33244 13.7662 8.75462 13.4177 9.13883 13.0402C9.20138 13.1809 9.28179 13.3149 9.38008 13.4356C9.49624 13.5763 9.63473 13.7014 9.79556 13.8042C9.6727 13.9673 9.58112 14.1505 9.51857 14.3448C9.42922 14.6263 9.40242 14.9323 9.44709 15.2228C9.4873 15.5199 9.59899 15.8103 9.77546 16.0583C9.94746 16.2951 10.1753 16.4939 10.4635 16.6212C10.4031 16.7151 10.354 16.8156 10.3116 16.9184C10.2177 17.1529 10.1708 17.4031 10.1708 17.6489C10.1708 17.8946 10.2177 18.147 10.3116 18.3816C10.3317 18.4285 10.3518 18.4754 10.3741 18.5201H8.68314C7.9728 18.5201 7.34735 18.4285 6.69955 18.2364C6.0875 18.0554 5.45088 17.7851 4.70703 17.4188V10.8754C6.56329 10.594 7.34065 9.58197 8.08673 8.61019C8.74122 7.75681 9.36668 6.94141 10.9124 6.94141C11.9355 6.94141 12.5721 7.04194 12.9206 7.30778C13.2244 7.54011 13.3339 7.96904 13.3339 8.64817C13.3339 8.6638 13.3361 8.67721 13.3361 8.69061Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M36.1071 9.39911C35.9262 9.21592 35.676 9.10422 35.4012 9.10422H33.1027C32.8279 9.10422 32.5777 9.21369 32.3946 9.39687C32.2851 9.50634 32.198 9.64484 32.1488 9.79899C30.7326 9.54431 30.0938 8.71327 29.4817 7.91574C28.6798 6.86801 27.9136 5.86719 25.8965 5.86719C24.6568 5.86719 23.8437 6.02357 23.3053 6.43238C22.9301 6.7161 22.7089 7.09364 22.5995 7.58958H20.4707C19.5995 7.58958 19.0344 8.07212 18.7864 8.69093C18.6926 8.9255 18.6457 9.17571 18.6457 9.42144C18.6457 9.66718 18.6926 9.91962 18.7864 10.1542C18.8333 10.2681 18.8892 10.3798 18.9562 10.4826C18.7105 10.6032 18.5117 10.7775 18.3598 10.9852C18.266 11.1126 18.19 11.2511 18.1319 11.3963C18.0381 11.6286 17.9912 11.8788 17.9912 12.1268C17.9912 12.3748 18.0381 12.625 18.1319 12.8595C18.2079 13.0472 18.3129 13.2237 18.4469 13.3778C18.5899 13.5409 18.7641 13.6772 18.9696 13.7777C18.9026 13.8805 18.8467 13.9877 18.8021 14.0994C18.7083 14.334 18.6613 14.5842 18.6613 14.8321C18.6613 15.0801 18.7083 15.3303 18.8021 15.5626C19.0009 16.0564 19.3963 16.4629 19.9927 16.6081C19.9569 16.6707 19.9257 16.7377 19.8988 16.8047C19.805 17.0371 19.7581 17.2895 19.7581 17.5352C19.7581 17.781 19.805 18.0334 19.8988 18.268C20.1468 18.8868 20.7075 19.3693 21.5809 19.3693H28.1236C28.9233 19.3716 29.6359 19.2666 30.3752 19.0454C30.9471 18.8756 31.5301 18.6388 32.1846 18.3283C32.236 18.4422 32.3074 18.5428 32.3923 18.6299C32.5755 18.8109 32.8257 18.927 33.1004 18.927H35.399C35.6737 18.927 35.9239 18.8131 36.1049 18.6321C36.288 18.4512 36.3997 18.201 36.3997 17.924V10.1073C36.3997 9.83026 36.2903 9.58006 36.1071 9.39911ZM19.6777 9.04837C19.7894 8.76912 20.0507 8.55243 20.4685 8.55243H22.5079V10.2927H20.4685C20.0507 10.2927 19.7894 10.076 19.6777 9.79675C19.6308 9.68282 19.6085 9.55325 19.6085 9.42144C19.6085 9.28964 19.6308 9.1623 19.6777 9.04837ZM19.021 12.5021C18.9741 12.3859 18.9517 12.2586 18.9517 12.1268C18.9517 11.995 18.9741 11.8677 19.021 11.7537C19.1349 11.4745 19.3963 11.2555 19.814 11.2555H22.5079V12.998H19.814C19.3963 12.998 19.1349 12.7813 19.021 12.5021ZM25.6039 17.9128C25.49 18.192 25.2286 18.4087 24.8131 18.4087H21.5786C21.1632 18.4065 20.8996 18.1898 20.7879 17.9106C20.741 17.7944 20.7186 17.6671 20.7186 17.5352C20.7186 17.4034 20.741 17.2761 20.7879 17.1599C20.8996 16.8829 21.1654 16.664 21.5786 16.664H24.8131C25.2286 16.6662 25.49 16.8852 25.6039 17.1622C25.6508 17.2783 25.6731 17.4057 25.6731 17.5375C25.6731 17.6693 25.6508 17.7966 25.6039 17.9128ZM25.5592 15.7034H20.4819C20.0664 15.7012 19.8028 15.4845 19.6911 15.2052C19.6442 15.089 19.6219 14.9617 19.6219 14.8299C19.6219 14.6981 19.6442 14.5708 19.6911 14.4546C19.8028 14.1776 20.0664 13.9587 20.4819 13.9587H22.5168C22.5727 14.5395 22.8474 14.926 23.2339 15.1494H23.2383C23.4416 15.27 23.6739 15.337 23.9196 15.3616C23.971 15.3661 24.0246 15.3661 24.076 15.3661H24.0782C24.1341 15.3661 24.1922 15.3661 24.248 15.3594C24.5183 15.3393 24.7975 15.2633 25.0656 15.1449C25.4989 14.9483 25.9055 14.6288 26.1936 14.2089C26.2763 14.2982 26.3366 14.4054 26.3723 14.5216C26.4192 14.6668 26.4304 14.8254 26.4103 14.9796C26.388 15.127 26.3366 15.2678 26.2517 15.3862C26.1177 15.5738 25.8876 15.7034 25.5592 15.7034ZM32.0997 17.3052C31.3559 17.6715 30.7192 17.9441 30.1072 18.125C29.4594 18.3171 28.8339 18.4087 28.1236 18.4087H26.4326C26.455 18.3641 26.4751 18.3171 26.4952 18.2702C26.589 18.0357 26.6359 17.7855 26.6359 17.5375C26.6359 17.2895 26.589 17.0415 26.4952 16.807C26.4527 16.7042 26.4058 16.6037 26.3455 16.5099C26.6337 16.3825 26.8615 16.1837 27.0335 15.9469C27.21 15.6989 27.3217 15.4085 27.3619 15.1114C27.4043 14.821 27.3775 14.5149 27.2882 14.2334C27.2256 14.0391 27.134 13.8559 27.0112 13.6928C27.172 13.59 27.3105 13.4649 27.4267 13.3242C27.5249 13.2036 27.6054 13.0695 27.6679 12.9288C28.0521 13.3063 28.4743 13.6548 28.9345 13.9765C29.1511 14.1284 29.4482 14.0748 29.6001 13.8581C29.752 13.6414 29.6984 13.3421 29.4817 13.1902C28.8295 12.7344 28.2599 12.2162 27.7751 11.6308C27.3127 11.0746 26.9241 10.4558 26.6136 9.77888V9.22486C26.6136 8.95901 26.3969 8.74455 26.1311 8.74455C25.8652 8.74455 25.6508 8.95901 25.6508 9.22486V12.8662C25.6508 13.532 25.1907 14.0368 24.6724 14.2692C24.5049 14.3451 24.3374 14.3898 24.1765 14.4032C24.1519 14.4054 24.1296 14.4077 24.1073 14.4077C24.0693 14.4077 24.0336 14.4077 24.0001 14.4032C23.8951 14.3965 23.8012 14.3697 23.7253 14.3273C23.5734 14.2334 23.4706 14.0435 23.4706 13.7353V8.577C23.4706 8.5636 23.4729 8.55019 23.4729 8.53456C23.4729 7.85543 23.5846 7.4265 23.8884 7.1964C24.2368 6.93056 24.8735 6.83003 25.8965 6.83003C27.4423 6.83003 28.0655 7.64543 28.72 8.49881C29.4661 9.47059 30.2434 10.4826 32.1019 10.7618V17.3052H32.0997ZM26.6091 12.7925V11.6889C26.694 11.8073 26.7811 11.9257 26.8704 12.0397C26.8704 12.0464 26.8727 12.0531 26.8727 12.0575C26.8749 12.091 26.8749 12.1134 26.8749 12.1201C26.8771 12.339 26.8124 12.5557 26.6783 12.7188C26.6582 12.7456 26.6337 12.7702 26.6091 12.7925ZM35.437 17.924C35.437 17.9441 35.4169 17.9642 35.3967 17.9642H33.0982C33.0781 17.9642 33.058 17.9441 33.058 17.924V10.1073C33.0625 10.0849 33.0803 10.0671 33.1004 10.0671H35.399C35.4191 10.0671 35.4392 10.0849 35.4392 10.1073V17.924H35.437Z' fill='%23EB9B00'/%3E%3Cpath d='M35.4413 10.1066V17.9233C35.439 17.9434 35.4189 17.9635 35.3988 17.9635H33.1003C33.0802 17.9635 33.0601 17.9434 33.0601 17.9233V10.1066C33.0645 10.0843 33.0824 10.0664 33.1025 10.0664H35.401C35.4212 10.0664 35.4413 10.0843 35.4413 10.1066Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M25.6733 17.5375C25.6733 17.6694 25.6509 17.7967 25.604 17.9129C25.4901 18.1921 25.2287 18.4088 24.8133 18.4088H21.5788C21.1633 18.4066 20.8997 18.1899 20.788 17.9106C20.7411 17.7945 20.7188 17.6671 20.7188 17.5353C20.7188 17.4035 20.7411 17.2762 20.788 17.16C20.8997 16.883 21.1655 16.6641 21.5788 16.6641H24.8133C25.2287 16.6663 25.4901 16.8852 25.604 17.1622C25.6509 17.2784 25.6733 17.4057 25.6733 17.5375Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M22.5078 8.55078V10.291H20.4684C20.0507 10.291 19.7893 10.0744 19.6776 9.79511C19.6307 9.68117 19.6084 9.5516 19.6084 9.4198C19.6084 9.28799 19.6307 9.16066 19.6776 9.04672C19.7893 8.76748 20.0507 8.55078 20.4684 8.55078H22.5078Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M22.5078 11.2539V12.9964H19.8139C19.3962 12.9964 19.1348 12.7797 19.0209 12.5005C18.974 12.3843 18.9517 12.257 18.9517 12.1252C18.9517 11.9934 18.974 11.866 19.0209 11.7521C19.1348 11.4728 19.3962 11.2539 19.8139 11.2539H22.5078Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M26.4105 14.978C26.3882 15.1254 26.3368 15.2661 26.2519 15.3845C26.1179 15.5722 25.8878 15.7018 25.5594 15.7018H20.4821C20.0666 15.6995 19.803 15.4828 19.6913 15.2036C19.6444 15.0874 19.6221 14.9601 19.6221 14.8283C19.6221 14.6965 19.6444 14.5691 19.6913 14.453C19.803 14.176 20.0666 13.957 20.4821 13.957H22.517C22.5729 14.5379 22.8476 14.9243 23.2341 15.1477H23.2385C23.4418 15.2684 23.6741 15.3354 23.9198 15.36C23.9712 15.3644 24.0248 15.3644 24.0762 15.3644H24.0784C24.1343 15.3644 24.1924 15.3644 24.2482 15.3577C24.5185 15.3376 24.7977 15.2617 25.0658 15.1433C25.4991 14.9467 25.9057 14.6272 26.1938 14.2072C26.2765 14.2966 26.3368 14.4038 26.3725 14.52C26.4194 14.6652 26.4306 14.8238 26.4105 14.978Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M32.102 10.7599V17.3032C31.3559 17.6696 30.7193 17.9422 30.1072 18.1231C29.4594 18.3152 28.834 18.4068 28.1236 18.4068H26.4327C26.455 18.3622 26.4751 18.3152 26.4952 18.2683C26.589 18.0338 26.636 17.7836 26.636 17.5356C26.636 17.2876 26.589 17.0396 26.4952 16.8051C26.4528 16.7023 26.4059 16.6018 26.3456 16.508C26.6337 16.3806 26.8616 16.1818 27.0336 15.945C27.21 15.697 27.3217 15.4066 27.3619 15.1095C27.4044 14.8191 27.3776 14.513 27.2882 14.2315C27.2257 14.0372 27.1341 13.854 27.0112 13.6909C27.1721 13.5881 27.3106 13.463 27.4267 13.3223C27.525 13.2017 27.6054 13.0676 27.668 12.9269C28.0522 13.3044 28.4743 13.6529 28.9345 13.9746C29.1512 14.1265 29.4483 14.0729 29.6002 13.8562C29.7521 13.6395 29.6985 13.3402 29.4818 13.1883C28.8295 12.7325 28.2599 12.2142 27.7752 11.6289C27.3128 11.0727 26.9241 10.4539 26.6136 9.77698V9.22295C26.6136 8.95711 26.3969 8.74264 26.1311 8.74264C25.8653 8.74264 25.6509 8.95711 25.6509 9.22295V12.8643C25.6509 13.5301 25.1907 14.0349 24.6725 14.2673C24.5049 14.3432 24.3374 14.3879 24.1766 14.4013C24.152 14.4035 24.1297 14.4058 24.1073 14.4058C24.0694 14.4058 24.0336 14.4058 24.0001 14.4013C23.8951 14.3946 23.8013 14.3678 23.7254 14.3254C23.5735 14.2315 23.4707 14.0416 23.4707 13.7334V8.5751C23.4707 8.56169 23.4729 8.54829 23.4729 8.53265C23.4729 7.85352 23.5846 7.4246 23.8884 7.1945C24.2369 6.92865 24.8735 6.82812 25.8966 6.82812C27.4423 6.82812 28.0656 7.64353 28.7201 8.49691C29.4661 9.46869 30.2435 10.4807 32.102 10.7599Z' fill='%230D661A' fill-opacity='0.33'/%3E%3C/svg%3E%0A"); } */
/* .status-block--term-sheet-sent .kanban-card__fists { background-image: url("data:image/svg+xml,%3Csvg width='37' height='27' viewBox='0 0 37 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.867 2.92453C13.0881 2.7056 13.4455 2.70783 13.6644 2.929L15.6458 4.93064C15.8647 5.1518 15.8625 5.50924 15.6413 5.72817C15.4202 5.9471 15.0628 5.94487 14.8439 5.7237L12.8625 3.72206C12.6436 3.5009 12.6458 3.14346 12.867 2.92453Z' fill='%2301A7DB'/%3E%3Cpath d='M17.875 3.74861C17.875 4.05914 18.1252 4.31158 18.4357 4.31381C18.7462 4.31381 18.9986 4.06584 19.0031 3.75532L19.0209 0.569664C19.0209 0.419988 18.9628 0.274779 18.8579 0.169782C18.7529 0.0647853 18.6099 0 18.4602 0C18.3106 0 18.1654 0.0580834 18.0604 0.16308C17.9554 0.268077 17.8951 0.411052 17.8951 0.560728L17.8772 3.74638L17.875 3.74861Z' fill='%2301A7DB'/%3E%3Cpath d='M19.0141 22.4754C19.0141 22.1648 18.7639 21.9124 18.4534 21.9102C18.1429 21.9102 17.8905 22.1581 17.886 22.4687L17.8682 25.6543C17.8682 25.9648 18.1183 26.2195 18.4288 26.2217C18.7393 26.224 18.994 25.9715 18.9962 25.661L19.0141 22.4754Z' fill='%23232323'/%3E%3Cpath d='M24.0271 22.501L22.0458 20.4993C21.8269 20.2781 21.4695 20.2759 21.2483 20.4948C21.0272 20.7138 21.0249 21.0712 21.2439 21.2924L23.2252 23.294C23.4441 23.5152 23.8015 23.5174 24.0227 23.2985C24.2438 23.0796 24.246 22.7221 24.0271 22.501Z' fill='%23232323'/%3E%3Cpath d='M15.6727 20.4642C15.4538 20.243 15.0964 20.2408 14.8753 20.4597L12.8738 22.4412C12.6527 22.6602 12.6504 23.0176 12.8693 23.2388C13.0882 23.4599 13.4457 23.4622 13.6668 23.2432L15.6683 21.2617C15.7732 21.1567 15.8358 21.0137 15.8358 20.864C15.8358 20.7144 15.7777 20.5714 15.6727 20.4642Z' fill='%23232323'/%3E%3Cpath d='M21.217 5.75907C21.322 5.86407 21.4649 5.92662 21.6146 5.92662C21.7643 5.92662 21.9072 5.86854 22.0145 5.76354L23.6161 4.17965C23.8372 3.96072 23.8394 3.60329 23.6205 3.38212C23.4016 3.16096 23.0442 3.15872 22.8231 3.37765L21.2215 4.96154C21.0003 5.18047 20.9981 5.53791 21.217 5.75907Z' fill='%2301A7DB'/%3E%3Cpath d='M18.6748 11.5057C18.5989 11.3158 18.4939 11.137 18.3598 10.9829C18.2213 10.8243 18.0516 10.6903 17.8505 10.592C17.9176 10.4892 17.9734 10.3775 18.0203 10.2636C18.1141 10.029 18.161 9.77879 18.161 9.53082C18.161 9.28285 18.1141 9.03488 18.0203 8.80031C17.7724 8.1815 17.2094 7.69896 16.3383 7.69896H14.2095C14.1 7.20525 13.8789 6.82771 13.5036 6.54399C12.9653 6.13294 12.15 5.97656 10.9102 5.97656C8.89312 5.97656 8.12917 6.97738 7.32501 8.02512C6.71295 8.82265 6.0741 9.65369 4.65789 9.9106C4.60874 9.75645 4.52163 9.61795 4.41217 9.50848C4.229 9.32529 3.97882 9.2136 3.70407 9.2136H1.40551C1.13076 9.2136 0.880578 9.32529 0.699643 9.50848C0.516474 9.68943 0.404785 9.93964 0.404785 10.2167V18.0333C0.407019 18.3104 0.518707 18.5606 0.701877 18.7415C0.882812 18.9225 1.13299 19.0364 1.40775 19.0364H3.7063C3.98105 19.0364 4.23124 18.9225 4.4144 18.7415C4.49929 18.6544 4.57077 18.5539 4.62215 18.4399C5.27664 18.7504 5.85965 18.985 6.4315 19.1548C7.17088 19.376 7.88345 19.481 8.68314 19.481H15.2259C16.0993 19.4787 16.6599 18.9962 16.9079 18.3774C17.0017 18.1428 17.0486 17.8926 17.0486 17.6446C17.0486 17.3967 17.0017 17.1464 16.9079 16.9141C16.8811 16.8471 16.8498 16.7801 16.8163 16.7175C17.4127 16.5723 17.8081 16.1657 18.0069 15.672C18.1007 15.4397 18.1476 15.1895 18.1454 14.9415C18.1454 14.6935 18.0985 14.4433 18.0047 14.2088C17.96 14.0971 17.9042 13.9898 17.8371 13.8871C18.0896 13.7642 18.2928 13.5877 18.447 13.3755C18.5408 13.2504 18.6167 13.1141 18.6748 12.9689C18.7686 12.7343 18.8155 12.4841 18.8155 12.2362C18.8155 11.9882 18.7686 11.738 18.6748 11.5057ZM3.7063 18.0736H1.40775C1.38764 18.0736 1.36754 18.0534 1.36754 18.0333V10.2167C1.36531 10.1943 1.38541 10.1764 1.40551 10.1764H3.70407C3.72417 10.1764 3.74204 10.1943 3.74427 10.2167V18.0333C3.74651 18.0534 3.7264 18.0736 3.7063 18.0736ZM14.2988 8.66404H16.3383C16.756 8.6618 17.0173 8.8785 17.129 9.15775C17.1759 9.27168 17.1983 9.40125 17.1983 9.53082C17.1983 9.66039 17.1759 9.7922 17.129 9.90613C17.0173 10.1854 16.756 10.4021 16.3383 10.4021H14.2988V8.66404ZM10.3116 18.3796C10.3317 18.4265 10.3518 18.4734 10.3741 18.5181H8.68314C7.9728 18.5181 7.34735 18.4265 6.69955 18.2344C6.0875 18.0534 5.45087 17.7831 4.70703 17.4168V10.8734C6.56329 10.592 7.34064 9.57997 8.08672 8.60819C8.74122 7.75481 9.36668 6.93941 10.9124 6.93941C11.9355 6.93941 12.5721 7.03994 12.9206 7.30578C13.2244 7.53811 13.3339 7.96704 13.3339 8.64617C13.3339 8.6618 13.3361 8.67521 13.3361 8.68861V13.8469C13.3361 14.1552 13.2333 14.345 13.0814 14.4366C13.0055 14.4791 12.9117 14.5059 12.8067 14.5126C12.7732 14.5171 12.7374 14.5171 12.6995 14.5171C12.6771 14.5171 12.6548 14.5148 12.6302 14.5126C12.4694 14.4992 12.3019 14.4545 12.1343 14.3786C11.6161 14.1462 11.1559 13.6413 11.1559 12.9756V9.33423C11.1559 9.06839 10.9415 8.85392 10.6757 8.85392C10.4098 8.85392 10.1932 9.06839 10.1932 9.33423V9.88826C9.88268 10.5652 9.494 11.184 9.03161 11.7402C8.54688 12.3255 7.97727 12.8438 7.32501 13.2995C7.10833 13.4515 7.05472 13.7508 7.20662 13.9675C7.35852 14.1842 7.65561 14.2378 7.87228 14.0859C8.33244 13.7642 8.75462 13.4157 9.13883 13.0382C9.20138 13.1789 9.28179 13.3129 9.38008 13.4336C9.49623 13.5743 9.63473 13.6994 9.79556 13.8022C9.6727 13.9653 9.58112 14.1485 9.51857 14.3428C9.42922 14.6243 9.40242 14.9303 9.44709 15.2208C9.4873 15.5179 9.59899 15.8083 9.77546 16.0563C9.94746 16.2931 10.1753 16.4919 10.4635 16.6192C10.4031 16.7131 10.354 16.8136 10.3116 16.9163C10.2177 17.1509 10.1708 17.4011 10.1708 17.6469C10.1708 17.8926 10.2177 18.145 10.3116 18.3796ZM10.1954 11.7983V12.9019C10.1708 12.8796 10.1463 12.855 10.1262 12.8282C9.99213 12.6651 9.92735 12.4484 9.92959 12.2295C9.92959 12.2228 9.92959 12.2004 9.92959 12.1669C9.92959 12.1624 9.93182 12.1557 9.93182 12.149C10.0212 12.0351 10.1083 11.9167 10.1932 11.7983H10.1954ZM16.0188 18.0199C15.9072 18.2992 15.6436 18.5159 15.2281 18.5159H11.9936C11.5781 18.5181 11.3168 18.3014 11.2028 18.0222C11.1559 17.906 11.1336 17.7787 11.1336 17.6469C11.1336 17.5151 11.1559 17.3877 11.2028 17.2716C11.3168 16.9945 11.5781 16.7756 11.9936 16.7756H15.2281C15.6436 16.7734 15.9072 16.9923 16.0188 17.2693C16.0658 17.3855 16.0881 17.5128 16.0881 17.6446C16.0881 17.7764 16.0658 17.9038 16.0188 18.0199ZM17.1179 15.3146C17.0062 15.5938 16.7426 15.8105 16.3271 15.8105H11.2497C10.9214 15.8128 10.6913 15.6832 10.5573 15.4955C10.4724 15.3771 10.421 15.2364 10.3987 15.089C10.3786 14.9348 10.3875 14.7762 10.4344 14.631C10.4702 14.5148 10.5305 14.4076 10.6131 14.3182C10.9013 14.7382 11.3101 15.0577 11.7434 15.2543C12.0115 15.3727 12.2907 15.4486 12.561 15.4687C12.6168 15.4754 12.6749 15.4754 12.7307 15.4754C12.7821 15.4754 12.8357 15.4754 12.8871 15.471C13.1328 15.4486 13.3651 15.3816 13.5684 15.2632H13.5729C13.9593 15.0376 14.2318 14.6511 14.2877 14.0725L16.3226 14.068C16.7381 14.068 17.0017 14.287 17.1134 14.564C17.1603 14.6801 17.1826 14.8097 17.1849 14.9393C17.1849 15.0711 17.1625 15.1984 17.1156 15.3146H17.1179ZM17.7858 12.6115C17.6718 12.8907 17.4105 13.1074 16.9928 13.1074H14.2988V11.3671H16.9928C17.4105 11.3649 17.6718 11.5838 17.7858 11.8631C17.8327 11.977 17.855 12.1044 17.855 12.2362C17.855 12.368 17.8327 12.4953 17.7858 12.6115Z' fill='%23232323'/%3E%3Cpath d='M3.74632 18.0366C3.74632 18.0567 3.72622 18.0768 3.70612 18.0768H1.40757C1.38746 18.0768 1.36736 18.0567 1.36736 18.0366V10.2199C1.36512 10.1976 1.38523 10.1797 1.40533 10.1797H3.70388C3.72399 10.1797 3.74186 10.1976 3.74409 10.2199V18.0366H3.74632Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.1983 9.53086C17.1983 9.66267 17.1759 9.79224 17.129 9.90617C17.0173 10.1854 16.756 10.4021 16.3383 10.4021H14.2988V8.66408H16.3383C16.756 8.66185 17.0173 8.87854 17.129 9.15779C17.1759 9.27172 17.1983 9.40129 17.1983 9.53086Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.855 12.2362C17.855 12.368 17.8327 12.4954 17.7857 12.6115C17.6718 12.8908 17.4105 13.1075 16.9928 13.1075H14.2988V11.3672H16.9928C17.4105 11.365 17.6718 11.5839 17.7857 11.8631C17.8327 11.9771 17.855 12.1044 17.855 12.2362Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.1872 14.9416C17.1872 15.0734 17.1649 15.2007 17.1179 15.3169C17.0063 15.5961 16.7427 15.8128 16.3272 15.8128H11.2498C10.9215 15.815 10.6914 15.6855 10.5574 15.4978C10.4725 15.3794 10.4211 15.2387 10.3988 15.0912C10.3787 14.9371 10.3876 14.7785 10.4345 14.6333C10.4702 14.5171 10.5306 14.4099 10.6132 14.3205C10.9014 14.7405 11.3101 15.06 11.7435 15.2566C12.0115 15.375 12.2908 15.4509 12.5611 15.471C12.6169 15.4777 12.675 15.4777 12.7308 15.4777C12.7822 15.4777 12.8358 15.4777 12.8872 15.4733C13.1329 15.4509 13.3652 15.3839 13.5685 15.2655H13.573C13.9594 15.0399 14.2319 14.6534 14.2878 14.0748L16.3227 14.0703C16.7382 14.0703 17.0018 14.2892 17.1135 14.5663C17.1604 14.6824 17.1827 14.812 17.185 14.9416H17.1872Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M16.0883 17.6464C16.0883 17.7782 16.066 17.9055 16.019 18.0217C15.9074 18.3009 15.6438 18.5176 15.2283 18.5176H11.9938C11.5783 18.5199 11.317 18.3032 11.203 18.0239C11.1561 17.9078 11.1338 17.7804 11.1338 17.6486C11.1338 17.5168 11.1561 17.3895 11.203 17.2733C11.317 16.9963 11.5783 16.7774 11.9938 16.7774H15.2283C15.6438 16.7751 15.9074 16.9941 16.019 17.2711C16.066 17.3872 16.0883 17.5146 16.0883 17.6464Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M13.3361 8.69061V13.8489C13.3361 14.1572 13.2333 14.347 13.0814 14.4386C13.0055 14.4811 12.9117 14.5079 12.8067 14.5146C12.7732 14.5191 12.7374 14.5191 12.6995 14.5191C12.6771 14.5191 12.6548 14.5168 12.6302 14.5146C12.4694 14.5012 12.3019 14.4565 12.1343 14.3806C11.6161 14.1482 11.1559 13.6433 11.1559 12.9776V9.33623C11.1559 9.07039 10.9415 8.85593 10.6757 8.85593C10.4098 8.85593 10.1932 9.07039 10.1932 9.33623V9.89026C9.88268 10.5672 9.494 11.186 9.03161 11.7422C8.54688 12.3275 7.97727 12.8458 7.32501 13.3015C7.10833 13.4535 7.05472 13.7528 7.20662 13.9695C7.35852 14.1862 7.65561 14.2398 7.87228 14.0879C8.33244 13.7662 8.75462 13.4177 9.13883 13.0402C9.20138 13.1809 9.28179 13.3149 9.38008 13.4356C9.49624 13.5763 9.63473 13.7014 9.79556 13.8042C9.6727 13.9673 9.58112 14.1505 9.51857 14.3448C9.42922 14.6263 9.40242 14.9323 9.44709 15.2228C9.4873 15.5199 9.59899 15.8103 9.77546 16.0583C9.94746 16.2951 10.1753 16.4939 10.4635 16.6212C10.4031 16.7151 10.354 16.8156 10.3116 16.9184C10.2177 17.1529 10.1708 17.4031 10.1708 17.6489C10.1708 17.8946 10.2177 18.147 10.3116 18.3816C10.3317 18.4285 10.3518 18.4754 10.3741 18.5201H8.68314C7.9728 18.5201 7.34735 18.4285 6.69955 18.2364C6.0875 18.0554 5.45088 17.7851 4.70703 17.4188V10.8754C6.56329 10.594 7.34065 9.58197 8.08673 8.61019C8.74122 7.75681 9.36668 6.94141 10.9124 6.94141C11.9355 6.94141 12.5721 7.04194 12.9206 7.30778C13.2244 7.54011 13.3339 7.96904 13.3339 8.64817C13.3339 8.6638 13.3361 8.67721 13.3361 8.69061Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M36.1071 9.39911C35.9262 9.21592 35.676 9.10422 35.4012 9.10422H33.1027C32.8279 9.10422 32.5777 9.21369 32.3946 9.39687C32.2851 9.50634 32.198 9.64484 32.1488 9.79899C30.7326 9.54431 30.0938 8.71327 29.4817 7.91574C28.6798 6.86801 27.9136 5.86719 25.8965 5.86719C24.6568 5.86719 23.8437 6.02357 23.3053 6.43238C22.9301 6.7161 22.7089 7.09364 22.5995 7.58958H20.4707C19.5995 7.58958 19.0344 8.07212 18.7864 8.69093C18.6926 8.9255 18.6457 9.17571 18.6457 9.42144C18.6457 9.66718 18.6926 9.91962 18.7864 10.1542C18.8333 10.2681 18.8892 10.3798 18.9562 10.4826C18.7105 10.6032 18.5117 10.7775 18.3598 10.9852C18.266 11.1126 18.19 11.2511 18.1319 11.3963C18.0381 11.6286 17.9912 11.8788 17.9912 12.1268C17.9912 12.3748 18.0381 12.625 18.1319 12.8595C18.2079 13.0472 18.3129 13.2237 18.4469 13.3778C18.5899 13.5409 18.7641 13.6772 18.9696 13.7777C18.9026 13.8805 18.8467 13.9877 18.8021 14.0994C18.7083 14.334 18.6613 14.5842 18.6613 14.8321C18.6613 15.0801 18.7083 15.3303 18.8021 15.5626C19.0009 16.0564 19.3963 16.4629 19.9927 16.6081C19.9569 16.6707 19.9257 16.7377 19.8988 16.8047C19.805 17.0371 19.7581 17.2895 19.7581 17.5352C19.7581 17.781 19.805 18.0334 19.8988 18.268C20.1468 18.8868 20.7075 19.3693 21.5809 19.3693H28.1236C28.9233 19.3716 29.6359 19.2666 30.3752 19.0454C30.9471 18.8756 31.5301 18.6388 32.1846 18.3283C32.236 18.4422 32.3074 18.5428 32.3923 18.6299C32.5755 18.8109 32.8257 18.927 33.1004 18.927H35.399C35.6737 18.927 35.9239 18.8131 36.1049 18.6321C36.288 18.4512 36.3997 18.201 36.3997 17.924V10.1073C36.3997 9.83026 36.2903 9.58006 36.1071 9.39911ZM19.6777 9.04837C19.7894 8.76912 20.0507 8.55243 20.4685 8.55243H22.5079V10.2927H20.4685C20.0507 10.2927 19.7894 10.076 19.6777 9.79675C19.6308 9.68282 19.6085 9.55325 19.6085 9.42144C19.6085 9.28964 19.6308 9.1623 19.6777 9.04837ZM19.021 12.5021C18.9741 12.3859 18.9517 12.2586 18.9517 12.1268C18.9517 11.995 18.9741 11.8677 19.021 11.7537C19.1349 11.4745 19.3963 11.2555 19.814 11.2555H22.5079V12.998H19.814C19.3963 12.998 19.1349 12.7813 19.021 12.5021ZM25.6039 17.9128C25.49 18.192 25.2286 18.4087 24.8131 18.4087H21.5786C21.1632 18.4065 20.8996 18.1898 20.7879 17.9106C20.741 17.7944 20.7186 17.6671 20.7186 17.5352C20.7186 17.4034 20.741 17.2761 20.7879 17.1599C20.8996 16.8829 21.1654 16.664 21.5786 16.664H24.8131C25.2286 16.6662 25.49 16.8852 25.6039 17.1622C25.6508 17.2783 25.6731 17.4057 25.6731 17.5375C25.6731 17.6693 25.6508 17.7966 25.6039 17.9128ZM25.5592 15.7034H20.4819C20.0664 15.7012 19.8028 15.4845 19.6911 15.2052C19.6442 15.089 19.6219 14.9617 19.6219 14.8299C19.6219 14.6981 19.6442 14.5708 19.6911 14.4546C19.8028 14.1776 20.0664 13.9587 20.4819 13.9587H22.5168C22.5727 14.5395 22.8474 14.926 23.2339 15.1494H23.2383C23.4416 15.27 23.6739 15.337 23.9196 15.3616C23.971 15.3661 24.0246 15.3661 24.076 15.3661H24.0782C24.1341 15.3661 24.1922 15.3661 24.248 15.3594C24.5183 15.3393 24.7975 15.2633 25.0656 15.1449C25.4989 14.9483 25.9055 14.6288 26.1936 14.2089C26.2763 14.2982 26.3366 14.4054 26.3723 14.5216C26.4192 14.6668 26.4304 14.8254 26.4103 14.9796C26.388 15.127 26.3366 15.2678 26.2517 15.3862C26.1177 15.5738 25.8876 15.7034 25.5592 15.7034ZM32.0997 17.3052C31.3559 17.6715 30.7192 17.9441 30.1072 18.125C29.4594 18.3171 28.8339 18.4087 28.1236 18.4087H26.4326C26.455 18.3641 26.4751 18.3171 26.4952 18.2702C26.589 18.0357 26.6359 17.7855 26.6359 17.5375C26.6359 17.2895 26.589 17.0415 26.4952 16.807C26.4527 16.7042 26.4058 16.6037 26.3455 16.5099C26.6337 16.3825 26.8615 16.1837 27.0335 15.9469C27.21 15.6989 27.3217 15.4085 27.3619 15.1114C27.4043 14.821 27.3775 14.5149 27.2882 14.2334C27.2256 14.0391 27.134 13.8559 27.0112 13.6928C27.172 13.59 27.3105 13.4649 27.4267 13.3242C27.5249 13.2036 27.6054 13.0695 27.6679 12.9288C28.0521 13.3063 28.4743 13.6548 28.9345 13.9765C29.1511 14.1284 29.4482 14.0748 29.6001 13.8581C29.752 13.6414 29.6984 13.3421 29.4817 13.1902C28.8295 12.7344 28.2599 12.2162 27.7751 11.6308C27.3127 11.0746 26.9241 10.4558 26.6136 9.77888V9.22486C26.6136 8.95901 26.3969 8.74455 26.1311 8.74455C25.8652 8.74455 25.6508 8.95901 25.6508 9.22486V12.8662C25.6508 13.532 25.1907 14.0368 24.6724 14.2692C24.5049 14.3451 24.3374 14.3898 24.1765 14.4032C24.1519 14.4054 24.1296 14.4077 24.1073 14.4077C24.0693 14.4077 24.0336 14.4077 24.0001 14.4032C23.8951 14.3965 23.8012 14.3697 23.7253 14.3273C23.5734 14.2334 23.4706 14.0435 23.4706 13.7353V8.577C23.4706 8.5636 23.4729 8.55019 23.4729 8.53456C23.4729 7.85543 23.5846 7.4265 23.8884 7.1964C24.2368 6.93056 24.8735 6.83003 25.8965 6.83003C27.4423 6.83003 28.0655 7.64543 28.72 8.49881C29.4661 9.47059 30.2434 10.4826 32.1019 10.7618V17.3052H32.0997ZM26.6091 12.7925V11.6889C26.694 11.8073 26.7811 11.9257 26.8704 12.0397C26.8704 12.0464 26.8727 12.0531 26.8727 12.0575C26.8749 12.091 26.8749 12.1134 26.8749 12.1201C26.8771 12.339 26.8124 12.5557 26.6783 12.7188C26.6582 12.7456 26.6337 12.7702 26.6091 12.7925ZM35.437 17.924C35.437 17.9441 35.4169 17.9642 35.3967 17.9642H33.0982C33.0781 17.9642 33.058 17.9441 33.058 17.924V10.1073C33.0625 10.0849 33.0803 10.0671 33.1004 10.0671H35.399C35.4191 10.0671 35.4392 10.0849 35.4392 10.1073V17.924H35.437Z' fill='%2301A7DB'/%3E%3Cpath d='M35.4413 10.1066V17.9233C35.439 17.9434 35.4189 17.9635 35.3988 17.9635H33.1003C33.0802 17.9635 33.0601 17.9434 33.0601 17.9233V10.1066C33.0645 10.0843 33.0824 10.0664 33.1025 10.0664H35.401C35.4212 10.0664 35.4413 10.0843 35.4413 10.1066Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M25.6733 17.5375C25.6733 17.6694 25.6509 17.7967 25.604 17.9129C25.4901 18.1921 25.2287 18.4088 24.8133 18.4088H21.5788C21.1633 18.4066 20.8997 18.1899 20.788 17.9106C20.7411 17.7945 20.7188 17.6671 20.7188 17.5353C20.7188 17.4035 20.7411 17.2762 20.788 17.16C20.8997 16.883 21.1655 16.6641 21.5788 16.6641H24.8133C25.2287 16.6663 25.4901 16.8852 25.604 17.1622C25.6509 17.2784 25.6733 17.4057 25.6733 17.5375Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M22.5078 8.55078V10.291H20.4684C20.0507 10.291 19.7893 10.0744 19.6776 9.79511C19.6307 9.68117 19.6084 9.5516 19.6084 9.4198C19.6084 9.28799 19.6307 9.16066 19.6776 9.04672C19.7893 8.76748 20.0507 8.55078 20.4684 8.55078H22.5078Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M22.5078 11.2539V12.9964H19.8139C19.3962 12.9964 19.1348 12.7797 19.0209 12.5005C18.974 12.3843 18.9517 12.257 18.9517 12.1252C18.9517 11.9934 18.974 11.866 19.0209 11.7521C19.1348 11.4728 19.3962 11.2539 19.8139 11.2539H22.5078Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M26.4105 14.978C26.3882 15.1254 26.3368 15.2661 26.2519 15.3845C26.1179 15.5722 25.8878 15.7018 25.5594 15.7018H20.4821C20.0666 15.6995 19.803 15.4828 19.6913 15.2036C19.6444 15.0874 19.6221 14.9601 19.6221 14.8283C19.6221 14.6965 19.6444 14.5691 19.6913 14.453C19.803 14.176 20.0666 13.957 20.4821 13.957H22.517C22.5729 14.5379 22.8476 14.9243 23.2341 15.1477H23.2385C23.4418 15.2684 23.6741 15.3354 23.9198 15.36C23.9712 15.3644 24.0248 15.3644 24.0762 15.3644H24.0784C24.1343 15.3644 24.1924 15.3644 24.2482 15.3577C24.5185 15.3376 24.7977 15.2617 25.0658 15.1433C25.4991 14.9467 25.9057 14.6272 26.1938 14.2072C26.2765 14.2966 26.3368 14.4038 26.3725 14.52C26.4194 14.6652 26.4306 14.8238 26.4105 14.978Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M32.102 10.7599V17.3032C31.3559 17.6696 30.7193 17.9422 30.1072 18.1231C29.4594 18.3152 28.834 18.4068 28.1236 18.4068H26.4327C26.455 18.3622 26.4751 18.3152 26.4952 18.2683C26.589 18.0338 26.636 17.7836 26.636 17.5356C26.636 17.2876 26.589 17.0396 26.4952 16.8051C26.4528 16.7023 26.4059 16.6018 26.3456 16.508C26.6337 16.3806 26.8616 16.1818 27.0336 15.945C27.21 15.697 27.3217 15.4066 27.3619 15.1095C27.4044 14.8191 27.3776 14.513 27.2882 14.2315C27.2257 14.0372 27.1341 13.854 27.0112 13.6909C27.1721 13.5881 27.3106 13.463 27.4267 13.3223C27.525 13.2017 27.6054 13.0676 27.668 12.9269C28.0522 13.3044 28.4743 13.6529 28.9345 13.9746C29.1512 14.1265 29.4483 14.0729 29.6002 13.8562C29.7521 13.6395 29.6985 13.3402 29.4818 13.1883C28.8295 12.7325 28.2599 12.2142 27.7752 11.6289C27.3128 11.0727 26.9241 10.4539 26.6136 9.77698V9.22295C26.6136 8.95711 26.3969 8.74264 26.1311 8.74264C25.8653 8.74264 25.6509 8.95711 25.6509 9.22295V12.8643C25.6509 13.5301 25.1907 14.0349 24.6725 14.2673C24.5049 14.3432 24.3374 14.3879 24.1766 14.4013C24.152 14.4035 24.1297 14.4058 24.1073 14.4058C24.0694 14.4058 24.0336 14.4058 24.0001 14.4013C23.8951 14.3946 23.8013 14.3678 23.7254 14.3254C23.5735 14.2315 23.4707 14.0416 23.4707 13.7334V8.5751C23.4707 8.56169 23.4729 8.54829 23.4729 8.53265C23.4729 7.85352 23.5846 7.4246 23.8884 7.1945C24.2369 6.92865 24.8735 6.82812 25.8966 6.82812C27.4423 6.82812 28.0656 7.64353 28.7201 8.49691C29.4661 9.46869 30.2435 10.4807 32.102 10.7599Z' fill='%230D661A' fill-opacity='0.33'/%3E%3C/svg%3E%0A"); } */
/* .status-block--contracts-out .kanban-card__fists { background-image: url("data:image/svg+xml,%3Csvg width='37' height='27' viewBox='0 0 37 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.867 2.92453C13.0881 2.7056 13.4455 2.70783 13.6644 2.929L15.6458 4.93064C15.8647 5.1518 15.8625 5.50924 15.6413 5.72817C15.4202 5.9471 15.0628 5.94487 14.8439 5.7237L12.8625 3.72206C12.6436 3.5009 12.6458 3.14346 12.867 2.92453Z' fill='%23159C2A'/%3E%3Cpath d='M17.875 3.74861C17.875 4.05914 18.1252 4.31158 18.4357 4.31381C18.7462 4.31381 18.9986 4.06584 19.0031 3.75532L19.0209 0.569664C19.0209 0.419988 18.9628 0.274779 18.8579 0.169782C18.7529 0.0647853 18.6099 0 18.4602 0C18.3106 0 18.1654 0.0580834 18.0604 0.16308C17.9554 0.268077 17.8951 0.411052 17.8951 0.560728L17.8772 3.74638L17.875 3.74861Z' fill='%23159C2A'/%3E%3Cpath d='M19.0141 22.4754C19.0141 22.1648 18.7639 21.9124 18.4534 21.9102C18.1429 21.9102 17.8905 22.1581 17.886 22.4687L17.8682 25.6543C17.8682 25.9648 18.1183 26.2195 18.4288 26.2217C18.7393 26.224 18.994 25.9715 18.9962 25.661L19.0141 22.4754Z' fill='%23232323'/%3E%3Cpath d='M24.0271 22.501L22.0458 20.4993C21.8269 20.2781 21.4695 20.2759 21.2483 20.4948C21.0272 20.7138 21.0249 21.0712 21.2439 21.2924L23.2252 23.294C23.4441 23.5152 23.8015 23.5174 24.0227 23.2985C24.2438 23.0796 24.246 22.7221 24.0271 22.501Z' fill='%23232323'/%3E%3Cpath d='M15.6727 20.4642C15.4538 20.243 15.0964 20.2408 14.8753 20.4597L12.8738 22.4412C12.6527 22.6602 12.6504 23.0176 12.8693 23.2388C13.0882 23.4599 13.4457 23.4622 13.6668 23.2432L15.6683 21.2617C15.7732 21.1567 15.8358 21.0137 15.8358 20.864C15.8358 20.7144 15.7777 20.5714 15.6727 20.4642Z' fill='%23232323'/%3E%3Cpath d='M21.217 5.75907C21.322 5.86407 21.4649 5.92662 21.6146 5.92662C21.7643 5.92662 21.9072 5.86854 22.0145 5.76354L23.6161 4.17965C23.8372 3.96072 23.8394 3.60329 23.6205 3.38212C23.4016 3.16096 23.0442 3.15872 22.8231 3.37765L21.2215 4.96154C21.0003 5.18047 20.9981 5.53791 21.217 5.75907Z' fill='%23159C2A'/%3E%3Cpath d='M18.6748 11.5057C18.5989 11.3158 18.4939 11.137 18.3598 10.9829C18.2213 10.8243 18.0516 10.6903 17.8505 10.592C17.9176 10.4892 17.9734 10.3775 18.0203 10.2636C18.1141 10.029 18.161 9.77879 18.161 9.53082C18.161 9.28285 18.1141 9.03488 18.0203 8.80031C17.7724 8.1815 17.2094 7.69896 16.3383 7.69896H14.2095C14.1 7.20525 13.8789 6.82771 13.5036 6.54399C12.9653 6.13294 12.15 5.97656 10.9102 5.97656C8.89312 5.97656 8.12917 6.97738 7.32501 8.02512C6.71295 8.82265 6.0741 9.65369 4.65789 9.9106C4.60874 9.75645 4.52163 9.61795 4.41217 9.50848C4.229 9.32529 3.97882 9.2136 3.70407 9.2136H1.40551C1.13076 9.2136 0.880578 9.32529 0.699643 9.50848C0.516474 9.68943 0.404785 9.93964 0.404785 10.2167V18.0333C0.407019 18.3104 0.518707 18.5606 0.701877 18.7415C0.882812 18.9225 1.13299 19.0364 1.40775 19.0364H3.7063C3.98105 19.0364 4.23124 18.9225 4.4144 18.7415C4.49929 18.6544 4.57077 18.5539 4.62215 18.4399C5.27664 18.7504 5.85965 18.985 6.4315 19.1548C7.17088 19.376 7.88345 19.481 8.68314 19.481H15.2259C16.0993 19.4787 16.6599 18.9962 16.9079 18.3774C17.0017 18.1428 17.0486 17.8926 17.0486 17.6446C17.0486 17.3967 17.0017 17.1464 16.9079 16.9141C16.8811 16.8471 16.8498 16.7801 16.8163 16.7175C17.4127 16.5723 17.8081 16.1657 18.0069 15.672C18.1007 15.4397 18.1476 15.1895 18.1454 14.9415C18.1454 14.6935 18.0985 14.4433 18.0047 14.2088C17.96 14.0971 17.9042 13.9898 17.8371 13.8871C18.0896 13.7642 18.2928 13.5877 18.447 13.3755C18.5408 13.2504 18.6167 13.1141 18.6748 12.9689C18.7686 12.7343 18.8155 12.4841 18.8155 12.2362C18.8155 11.9882 18.7686 11.738 18.6748 11.5057ZM3.7063 18.0736H1.40775C1.38764 18.0736 1.36754 18.0534 1.36754 18.0333V10.2167C1.36531 10.1943 1.38541 10.1764 1.40551 10.1764H3.70407C3.72417 10.1764 3.74204 10.1943 3.74427 10.2167V18.0333C3.74651 18.0534 3.7264 18.0736 3.7063 18.0736ZM14.2988 8.66404H16.3383C16.756 8.6618 17.0173 8.8785 17.129 9.15775C17.1759 9.27168 17.1983 9.40125 17.1983 9.53082C17.1983 9.66039 17.1759 9.7922 17.129 9.90613C17.0173 10.1854 16.756 10.4021 16.3383 10.4021H14.2988V8.66404ZM10.3116 18.3796C10.3317 18.4265 10.3518 18.4734 10.3741 18.5181H8.68314C7.9728 18.5181 7.34735 18.4265 6.69955 18.2344C6.0875 18.0534 5.45087 17.7831 4.70703 17.4168V10.8734C6.56329 10.592 7.34064 9.57997 8.08672 8.60819C8.74122 7.75481 9.36668 6.93941 10.9124 6.93941C11.9355 6.93941 12.5721 7.03994 12.9206 7.30578C13.2244 7.53811 13.3339 7.96704 13.3339 8.64617C13.3339 8.6618 13.3361 8.67521 13.3361 8.68861V13.8469C13.3361 14.1552 13.2333 14.345 13.0814 14.4366C13.0055 14.4791 12.9117 14.5059 12.8067 14.5126C12.7732 14.5171 12.7374 14.5171 12.6995 14.5171C12.6771 14.5171 12.6548 14.5148 12.6302 14.5126C12.4694 14.4992 12.3019 14.4545 12.1343 14.3786C11.6161 14.1462 11.1559 13.6413 11.1559 12.9756V9.33423C11.1559 9.06839 10.9415 8.85392 10.6757 8.85392C10.4098 8.85392 10.1932 9.06839 10.1932 9.33423V9.88826C9.88268 10.5652 9.494 11.184 9.03161 11.7402C8.54688 12.3255 7.97727 12.8438 7.32501 13.2995C7.10833 13.4515 7.05472 13.7508 7.20662 13.9675C7.35852 14.1842 7.65561 14.2378 7.87228 14.0859C8.33244 13.7642 8.75462 13.4157 9.13883 13.0382C9.20138 13.1789 9.28179 13.3129 9.38008 13.4336C9.49623 13.5743 9.63473 13.6994 9.79556 13.8022C9.6727 13.9653 9.58112 14.1485 9.51857 14.3428C9.42922 14.6243 9.40242 14.9303 9.44709 15.2208C9.4873 15.5179 9.59899 15.8083 9.77546 16.0563C9.94746 16.2931 10.1753 16.4919 10.4635 16.6192C10.4031 16.7131 10.354 16.8136 10.3116 16.9163C10.2177 17.1509 10.1708 17.4011 10.1708 17.6469C10.1708 17.8926 10.2177 18.145 10.3116 18.3796ZM10.1954 11.7983V12.9019C10.1708 12.8796 10.1463 12.855 10.1262 12.8282C9.99213 12.6651 9.92735 12.4484 9.92959 12.2295C9.92959 12.2228 9.92959 12.2004 9.92959 12.1669C9.92959 12.1624 9.93182 12.1557 9.93182 12.149C10.0212 12.0351 10.1083 11.9167 10.1932 11.7983H10.1954ZM16.0188 18.0199C15.9072 18.2992 15.6436 18.5159 15.2281 18.5159H11.9936C11.5781 18.5181 11.3168 18.3014 11.2028 18.0222C11.1559 17.906 11.1336 17.7787 11.1336 17.6469C11.1336 17.5151 11.1559 17.3877 11.2028 17.2716C11.3168 16.9945 11.5781 16.7756 11.9936 16.7756H15.2281C15.6436 16.7734 15.9072 16.9923 16.0188 17.2693C16.0658 17.3855 16.0881 17.5128 16.0881 17.6446C16.0881 17.7764 16.0658 17.9038 16.0188 18.0199ZM17.1179 15.3146C17.0062 15.5938 16.7426 15.8105 16.3271 15.8105H11.2497C10.9214 15.8128 10.6913 15.6832 10.5573 15.4955C10.4724 15.3771 10.421 15.2364 10.3987 15.089C10.3786 14.9348 10.3875 14.7762 10.4344 14.631C10.4702 14.5148 10.5305 14.4076 10.6131 14.3182C10.9013 14.7382 11.3101 15.0577 11.7434 15.2543C12.0115 15.3727 12.2907 15.4486 12.561 15.4687C12.6168 15.4754 12.6749 15.4754 12.7307 15.4754C12.7821 15.4754 12.8357 15.4754 12.8871 15.471C13.1328 15.4486 13.3651 15.3816 13.5684 15.2632H13.5729C13.9593 15.0376 14.2318 14.6511 14.2877 14.0725L16.3226 14.068C16.7381 14.068 17.0017 14.287 17.1134 14.564C17.1603 14.6801 17.1826 14.8097 17.1849 14.9393C17.1849 15.0711 17.1625 15.1984 17.1156 15.3146H17.1179ZM17.7858 12.6115C17.6718 12.8907 17.4105 13.1074 16.9928 13.1074H14.2988V11.3671H16.9928C17.4105 11.3649 17.6718 11.5838 17.7858 11.8631C17.8327 11.977 17.855 12.1044 17.855 12.2362C17.855 12.368 17.8327 12.4953 17.7858 12.6115Z' fill='%23232323'/%3E%3Cpath d='M3.74632 18.0366C3.74632 18.0567 3.72622 18.0768 3.70612 18.0768H1.40757C1.38746 18.0768 1.36736 18.0567 1.36736 18.0366V10.2199C1.36512 10.1976 1.38523 10.1797 1.40533 10.1797H3.70388C3.72399 10.1797 3.74186 10.1976 3.74409 10.2199V18.0366H3.74632Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.1983 9.53086C17.1983 9.66267 17.1759 9.79224 17.129 9.90617C17.0173 10.1854 16.756 10.4021 16.3383 10.4021H14.2988V8.66408H16.3383C16.756 8.66185 17.0173 8.87854 17.129 9.15779C17.1759 9.27172 17.1983 9.40129 17.1983 9.53086Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.855 12.2362C17.855 12.368 17.8327 12.4954 17.7857 12.6115C17.6718 12.8908 17.4105 13.1075 16.9928 13.1075H14.2988V11.3672H16.9928C17.4105 11.365 17.6718 11.5839 17.7857 11.8631C17.8327 11.9771 17.855 12.1044 17.855 12.2362Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.1872 14.9416C17.1872 15.0734 17.1649 15.2007 17.1179 15.3169C17.0063 15.5961 16.7427 15.8128 16.3272 15.8128H11.2498C10.9215 15.815 10.6914 15.6855 10.5574 15.4978C10.4725 15.3794 10.4211 15.2387 10.3988 15.0912C10.3787 14.9371 10.3876 14.7785 10.4345 14.6333C10.4702 14.5171 10.5306 14.4099 10.6132 14.3205C10.9014 14.7405 11.3101 15.06 11.7435 15.2566C12.0115 15.375 12.2908 15.4509 12.5611 15.471C12.6169 15.4777 12.675 15.4777 12.7308 15.4777C12.7822 15.4777 12.8358 15.4777 12.8872 15.4733C13.1329 15.4509 13.3652 15.3839 13.5685 15.2655H13.573C13.9594 15.0399 14.2319 14.6534 14.2878 14.0748L16.3227 14.0703C16.7382 14.0703 17.0018 14.2892 17.1135 14.5663C17.1604 14.6824 17.1827 14.812 17.185 14.9416H17.1872Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M16.0883 17.6464C16.0883 17.7782 16.066 17.9055 16.019 18.0217C15.9074 18.3009 15.6438 18.5176 15.2283 18.5176H11.9938C11.5783 18.5199 11.317 18.3032 11.203 18.0239C11.1561 17.9078 11.1338 17.7804 11.1338 17.6486C11.1338 17.5168 11.1561 17.3895 11.203 17.2733C11.317 16.9963 11.5783 16.7774 11.9938 16.7774H15.2283C15.6438 16.7751 15.9074 16.9941 16.019 17.2711C16.066 17.3872 16.0883 17.5146 16.0883 17.6464Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M13.3361 8.69061V13.8489C13.3361 14.1572 13.2333 14.347 13.0814 14.4386C13.0055 14.4811 12.9117 14.5079 12.8067 14.5146C12.7732 14.5191 12.7374 14.5191 12.6995 14.5191C12.6771 14.5191 12.6548 14.5168 12.6302 14.5146C12.4694 14.5012 12.3019 14.4565 12.1343 14.3806C11.6161 14.1482 11.1559 13.6433 11.1559 12.9776V9.33623C11.1559 9.07039 10.9415 8.85593 10.6757 8.85593C10.4098 8.85593 10.1932 9.07039 10.1932 9.33623V9.89026C9.88268 10.5672 9.494 11.186 9.03161 11.7422C8.54688 12.3275 7.97727 12.8458 7.32501 13.3015C7.10833 13.4535 7.05472 13.7528 7.20662 13.9695C7.35852 14.1862 7.65561 14.2398 7.87228 14.0879C8.33244 13.7662 8.75462 13.4177 9.13883 13.0402C9.20138 13.1809 9.28179 13.3149 9.38008 13.4356C9.49624 13.5763 9.63473 13.7014 9.79556 13.8042C9.6727 13.9673 9.58112 14.1505 9.51857 14.3448C9.42922 14.6263 9.40242 14.9323 9.44709 15.2228C9.4873 15.5199 9.59899 15.8103 9.77546 16.0583C9.94746 16.2951 10.1753 16.4939 10.4635 16.6212C10.4031 16.7151 10.354 16.8156 10.3116 16.9184C10.2177 17.1529 10.1708 17.4031 10.1708 17.6489C10.1708 17.8946 10.2177 18.147 10.3116 18.3816C10.3317 18.4285 10.3518 18.4754 10.3741 18.5201H8.68314C7.9728 18.5201 7.34735 18.4285 6.69955 18.2364C6.0875 18.0554 5.45088 17.7851 4.70703 17.4188V10.8754C6.56329 10.594 7.34065 9.58197 8.08673 8.61019C8.74122 7.75681 9.36668 6.94141 10.9124 6.94141C11.9355 6.94141 12.5721 7.04194 12.9206 7.30778C13.2244 7.54011 13.3339 7.96904 13.3339 8.64817C13.3339 8.6638 13.3361 8.67721 13.3361 8.69061Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M36.1071 9.39911C35.9262 9.21592 35.676 9.10422 35.4012 9.10422H33.1027C32.8279 9.10422 32.5777 9.21369 32.3946 9.39687C32.2851 9.50634 32.198 9.64484 32.1488 9.79899C30.7326 9.54431 30.0938 8.71327 29.4817 7.91574C28.6798 6.86801 27.9136 5.86719 25.8965 5.86719C24.6568 5.86719 23.8437 6.02357 23.3053 6.43238C22.9301 6.7161 22.7089 7.09364 22.5995 7.58958H20.4707C19.5995 7.58958 19.0344 8.07212 18.7864 8.69093C18.6926 8.9255 18.6457 9.17571 18.6457 9.42144C18.6457 9.66718 18.6926 9.91962 18.7864 10.1542C18.8333 10.2681 18.8892 10.3798 18.9562 10.4826C18.7105 10.6032 18.5117 10.7775 18.3598 10.9852C18.266 11.1126 18.19 11.2511 18.1319 11.3963C18.0381 11.6286 17.9912 11.8788 17.9912 12.1268C17.9912 12.3748 18.0381 12.625 18.1319 12.8595C18.2079 13.0472 18.3129 13.2237 18.4469 13.3778C18.5899 13.5409 18.7641 13.6772 18.9696 13.7777C18.9026 13.8805 18.8467 13.9877 18.8021 14.0994C18.7083 14.334 18.6613 14.5842 18.6613 14.8321C18.6613 15.0801 18.7083 15.3303 18.8021 15.5626C19.0009 16.0564 19.3963 16.4629 19.9927 16.6081C19.9569 16.6707 19.9257 16.7377 19.8988 16.8047C19.805 17.0371 19.7581 17.2895 19.7581 17.5352C19.7581 17.781 19.805 18.0334 19.8988 18.268C20.1468 18.8868 20.7075 19.3693 21.5809 19.3693H28.1236C28.9233 19.3716 29.6359 19.2666 30.3752 19.0454C30.9471 18.8756 31.5301 18.6388 32.1846 18.3283C32.236 18.4422 32.3074 18.5428 32.3923 18.6299C32.5755 18.8109 32.8257 18.927 33.1004 18.927H35.399C35.6737 18.927 35.9239 18.8131 36.1049 18.6321C36.288 18.4512 36.3997 18.201 36.3997 17.924V10.1073C36.3997 9.83026 36.2903 9.58006 36.1071 9.39911ZM19.6777 9.04837C19.7894 8.76912 20.0507 8.55243 20.4685 8.55243H22.5079V10.2927H20.4685C20.0507 10.2927 19.7894 10.076 19.6777 9.79675C19.6308 9.68282 19.6085 9.55325 19.6085 9.42144C19.6085 9.28964 19.6308 9.1623 19.6777 9.04837ZM19.021 12.5021C18.9741 12.3859 18.9517 12.2586 18.9517 12.1268C18.9517 11.995 18.9741 11.8677 19.021 11.7537C19.1349 11.4745 19.3963 11.2555 19.814 11.2555H22.5079V12.998H19.814C19.3963 12.998 19.1349 12.7813 19.021 12.5021ZM25.6039 17.9128C25.49 18.192 25.2286 18.4087 24.8131 18.4087H21.5786C21.1632 18.4065 20.8996 18.1898 20.7879 17.9106C20.741 17.7944 20.7186 17.6671 20.7186 17.5352C20.7186 17.4034 20.741 17.2761 20.7879 17.1599C20.8996 16.8829 21.1654 16.664 21.5786 16.664H24.8131C25.2286 16.6662 25.49 16.8852 25.6039 17.1622C25.6508 17.2783 25.6731 17.4057 25.6731 17.5375C25.6731 17.6693 25.6508 17.7966 25.6039 17.9128ZM25.5592 15.7034H20.4819C20.0664 15.7012 19.8028 15.4845 19.6911 15.2052C19.6442 15.089 19.6219 14.9617 19.6219 14.8299C19.6219 14.6981 19.6442 14.5708 19.6911 14.4546C19.8028 14.1776 20.0664 13.9587 20.4819 13.9587H22.5168C22.5727 14.5395 22.8474 14.926 23.2339 15.1494H23.2383C23.4416 15.27 23.6739 15.337 23.9196 15.3616C23.971 15.3661 24.0246 15.3661 24.076 15.3661H24.0782C24.1341 15.3661 24.1922 15.3661 24.248 15.3594C24.5183 15.3393 24.7975 15.2633 25.0656 15.1449C25.4989 14.9483 25.9055 14.6288 26.1936 14.2089C26.2763 14.2982 26.3366 14.4054 26.3723 14.5216C26.4192 14.6668 26.4304 14.8254 26.4103 14.9796C26.388 15.127 26.3366 15.2678 26.2517 15.3862C26.1177 15.5738 25.8876 15.7034 25.5592 15.7034ZM32.0997 17.3052C31.3559 17.6715 30.7192 17.9441 30.1072 18.125C29.4594 18.3171 28.8339 18.4087 28.1236 18.4087H26.4326C26.455 18.3641 26.4751 18.3171 26.4952 18.2702C26.589 18.0357 26.6359 17.7855 26.6359 17.5375C26.6359 17.2895 26.589 17.0415 26.4952 16.807C26.4527 16.7042 26.4058 16.6037 26.3455 16.5099C26.6337 16.3825 26.8615 16.1837 27.0335 15.9469C27.21 15.6989 27.3217 15.4085 27.3619 15.1114C27.4043 14.821 27.3775 14.5149 27.2882 14.2334C27.2256 14.0391 27.134 13.8559 27.0112 13.6928C27.172 13.59 27.3105 13.4649 27.4267 13.3242C27.5249 13.2036 27.6054 13.0695 27.6679 12.9288C28.0521 13.3063 28.4743 13.6548 28.9345 13.9765C29.1511 14.1284 29.4482 14.0748 29.6001 13.8581C29.752 13.6414 29.6984 13.3421 29.4817 13.1902C28.8295 12.7344 28.2599 12.2162 27.7751 11.6308C27.3127 11.0746 26.9241 10.4558 26.6136 9.77888V9.22486C26.6136 8.95901 26.3969 8.74455 26.1311 8.74455C25.8652 8.74455 25.6508 8.95901 25.6508 9.22486V12.8662C25.6508 13.532 25.1907 14.0368 24.6724 14.2692C24.5049 14.3451 24.3374 14.3898 24.1765 14.4032C24.1519 14.4054 24.1296 14.4077 24.1073 14.4077C24.0693 14.4077 24.0336 14.4077 24.0001 14.4032C23.8951 14.3965 23.8012 14.3697 23.7253 14.3273C23.5734 14.2334 23.4706 14.0435 23.4706 13.7353V8.577C23.4706 8.5636 23.4729 8.55019 23.4729 8.53456C23.4729 7.85543 23.5846 7.4265 23.8884 7.1964C24.2368 6.93056 24.8735 6.83003 25.8965 6.83003C27.4423 6.83003 28.0655 7.64543 28.72 8.49881C29.4661 9.47059 30.2434 10.4826 32.1019 10.7618V17.3052H32.0997ZM26.6091 12.7925V11.6889C26.694 11.8073 26.7811 11.9257 26.8704 12.0397C26.8704 12.0464 26.8727 12.0531 26.8727 12.0575C26.8749 12.091 26.8749 12.1134 26.8749 12.1201C26.8771 12.339 26.8124 12.5557 26.6783 12.7188C26.6582 12.7456 26.6337 12.7702 26.6091 12.7925ZM35.437 17.924C35.437 17.9441 35.4169 17.9642 35.3967 17.9642H33.0982C33.0781 17.9642 33.058 17.9441 33.058 17.924V10.1073C33.0625 10.0849 33.0803 10.0671 33.1004 10.0671H35.399C35.4191 10.0671 35.4392 10.0849 35.4392 10.1073V17.924H35.437Z' fill='%23159C2A'/%3E%3Cpath d='M35.4413 10.1066V17.9233C35.439 17.9434 35.4189 17.9635 35.3988 17.9635H33.1003C33.0802 17.9635 33.0601 17.9434 33.0601 17.9233V10.1066C33.0645 10.0843 33.0824 10.0664 33.1025 10.0664H35.401C35.4212 10.0664 35.4413 10.0843 35.4413 10.1066Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M25.6733 17.5375C25.6733 17.6694 25.6509 17.7967 25.604 17.9129C25.4901 18.1921 25.2287 18.4088 24.8133 18.4088H21.5788C21.1633 18.4066 20.8997 18.1899 20.788 17.9106C20.7411 17.7945 20.7188 17.6671 20.7188 17.5353C20.7188 17.4035 20.7411 17.2762 20.788 17.16C20.8997 16.883 21.1655 16.6641 21.5788 16.6641H24.8133C25.2287 16.6663 25.4901 16.8852 25.604 17.1622C25.6509 17.2784 25.6733 17.4057 25.6733 17.5375Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M22.5078 8.55078V10.291H20.4684C20.0507 10.291 19.7893 10.0744 19.6776 9.79511C19.6307 9.68117 19.6084 9.5516 19.6084 9.4198C19.6084 9.28799 19.6307 9.16066 19.6776 9.04672C19.7893 8.76748 20.0507 8.55078 20.4684 8.55078H22.5078Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M22.5078 11.2539V12.9964H19.8139C19.3962 12.9964 19.1348 12.7797 19.0209 12.5005C18.974 12.3843 18.9517 12.257 18.9517 12.1252C18.9517 11.9934 18.974 11.866 19.0209 11.7521C19.1348 11.4728 19.3962 11.2539 19.8139 11.2539H22.5078Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M26.4105 14.978C26.3882 15.1254 26.3368 15.2661 26.2519 15.3845C26.1179 15.5722 25.8878 15.7018 25.5594 15.7018H20.4821C20.0666 15.6995 19.803 15.4828 19.6913 15.2036C19.6444 15.0874 19.6221 14.9601 19.6221 14.8283C19.6221 14.6965 19.6444 14.5691 19.6913 14.453C19.803 14.176 20.0666 13.957 20.4821 13.957H22.517C22.5729 14.5379 22.8476 14.9243 23.2341 15.1477H23.2385C23.4418 15.2684 23.6741 15.3354 23.9198 15.36C23.9712 15.3644 24.0248 15.3644 24.0762 15.3644H24.0784C24.1343 15.3644 24.1924 15.3644 24.2482 15.3577C24.5185 15.3376 24.7977 15.2617 25.0658 15.1433C25.4991 14.9467 25.9057 14.6272 26.1938 14.2072C26.2765 14.2966 26.3368 14.4038 26.3725 14.52C26.4194 14.6652 26.4306 14.8238 26.4105 14.978Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M32.102 10.7599V17.3032C31.3559 17.6696 30.7193 17.9422 30.1072 18.1231C29.4594 18.3152 28.834 18.4068 28.1236 18.4068H26.4327C26.455 18.3622 26.4751 18.3152 26.4952 18.2683C26.589 18.0338 26.636 17.7836 26.636 17.5356C26.636 17.2876 26.589 17.0396 26.4952 16.8051C26.4528 16.7023 26.4059 16.6018 26.3456 16.508C26.6337 16.3806 26.8616 16.1818 27.0336 15.945C27.21 15.697 27.3217 15.4066 27.3619 15.1095C27.4044 14.8191 27.3776 14.513 27.2882 14.2315C27.2257 14.0372 27.1341 13.854 27.0112 13.6909C27.1721 13.5881 27.3106 13.463 27.4267 13.3223C27.525 13.2017 27.6054 13.0676 27.668 12.9269C28.0522 13.3044 28.4743 13.6529 28.9345 13.9746C29.1512 14.1265 29.4483 14.0729 29.6002 13.8562C29.7521 13.6395 29.6985 13.3402 29.4818 13.1883C28.8295 12.7325 28.2599 12.2142 27.7752 11.6289C27.3128 11.0727 26.9241 10.4539 26.6136 9.77698V9.22295C26.6136 8.95711 26.3969 8.74264 26.1311 8.74264C25.8653 8.74264 25.6509 8.95711 25.6509 9.22295V12.8643C25.6509 13.5301 25.1907 14.0349 24.6725 14.2673C24.5049 14.3432 24.3374 14.3879 24.1766 14.4013C24.152 14.4035 24.1297 14.4058 24.1073 14.4058C24.0694 14.4058 24.0336 14.4058 24.0001 14.4013C23.8951 14.3946 23.8013 14.3678 23.7254 14.3254C23.5735 14.2315 23.4707 14.0416 23.4707 13.7334V8.5751C23.4707 8.56169 23.4729 8.54829 23.4729 8.53265C23.4729 7.85352 23.5846 7.4246 23.8884 7.1945C24.2369 6.92865 24.8735 6.82812 25.8966 6.82812C27.4423 6.82812 28.0656 7.64353 28.7201 8.49691C29.4661 9.46869 30.2435 10.4807 32.102 10.7599Z' fill='%230D661A' fill-opacity='0.33'/%3E%3C/svg%3E%0A"); } */
.status-block--contracts-in .kanban-card__fists,
.status-block--approved .kanban-card__fists,
.status-block--term-sheet-sent .kanban-card__fists,
.status-block--contracts-out .kanban-card__fists,
.status-block--killed-in-final .kanban-card__fists { background-image: url("data:image/svg+xml,%3Csvg width='37' height='27' viewBox='0 0 37 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.867 2.92453C13.0881 2.7056 13.4455 2.70783 13.6644 2.929L15.6458 4.93064C15.8647 5.1518 15.8625 5.50924 15.6413 5.72817C15.4202 5.9471 15.0628 5.94487 14.8439 5.7237L12.8625 3.72206C12.6436 3.5009 12.6458 3.14346 12.867 2.92453Z' fill='%230D661A'/%3E%3Cpath d='M17.875 3.74861C17.875 4.05914 18.1252 4.31158 18.4357 4.31381C18.7462 4.31381 18.9986 4.06584 19.0031 3.75532L19.0209 0.569664C19.0209 0.419988 18.9628 0.274779 18.8579 0.169782C18.7529 0.0647853 18.6099 0 18.4602 0C18.3106 0 18.1654 0.0580834 18.0604 0.16308C17.9554 0.268077 17.8951 0.411052 17.8951 0.560728L17.8772 3.74638L17.875 3.74861Z' fill='%230D661A'/%3E%3Cpath d='M19.0141 22.4754C19.0141 22.1648 18.7639 21.9124 18.4534 21.9102C18.1429 21.9102 17.8905 22.1581 17.886 22.4687L17.8682 25.6543C17.8682 25.9648 18.1183 26.2195 18.4288 26.2217C18.7393 26.224 18.994 25.9715 18.9962 25.661L19.0141 22.4754Z' fill='%23232323'/%3E%3Cpath d='M24.0271 22.501L22.0458 20.4993C21.8269 20.2781 21.4695 20.2759 21.2483 20.4948C21.0272 20.7138 21.0249 21.0712 21.2439 21.2924L23.2252 23.294C23.4441 23.5152 23.8015 23.5174 24.0227 23.2985C24.2438 23.0796 24.246 22.7221 24.0271 22.501Z' fill='%23232323'/%3E%3Cpath d='M15.6727 20.4642C15.4538 20.243 15.0964 20.2408 14.8753 20.4597L12.8738 22.4412C12.6527 22.6602 12.6504 23.0176 12.8693 23.2388C13.0882 23.4599 13.4457 23.4622 13.6668 23.2432L15.6683 21.2617C15.7732 21.1567 15.8358 21.0137 15.8358 20.864C15.8358 20.7144 15.7777 20.5714 15.6727 20.4642Z' fill='%23232323'/%3E%3Cpath d='M21.217 5.75907C21.322 5.86407 21.4649 5.92662 21.6146 5.92662C21.7643 5.92662 21.9072 5.86854 22.0145 5.76354L23.6161 4.17965C23.8372 3.96072 23.8394 3.60329 23.6205 3.38212C23.4016 3.16096 23.0442 3.15872 22.8231 3.37765L21.2215 4.96154C21.0003 5.18047 20.9981 5.53791 21.217 5.75907Z' fill='%230D661A'/%3E%3Cpath d='M18.6748 11.5057C18.5989 11.3158 18.4939 11.137 18.3598 10.9829C18.2213 10.8243 18.0516 10.6903 17.8505 10.592C17.9176 10.4892 17.9734 10.3775 18.0203 10.2636C18.1141 10.029 18.161 9.77879 18.161 9.53082C18.161 9.28285 18.1141 9.03488 18.0203 8.80031C17.7724 8.1815 17.2094 7.69896 16.3383 7.69896H14.2095C14.1 7.20525 13.8789 6.82771 13.5036 6.54399C12.9653 6.13294 12.15 5.97656 10.9102 5.97656C8.89312 5.97656 8.12917 6.97738 7.32501 8.02512C6.71295 8.82265 6.0741 9.65369 4.65789 9.9106C4.60874 9.75645 4.52163 9.61795 4.41217 9.50848C4.229 9.32529 3.97882 9.2136 3.70407 9.2136H1.40551C1.13076 9.2136 0.880578 9.32529 0.699643 9.50848C0.516474 9.68943 0.404785 9.93964 0.404785 10.2167V18.0333C0.407019 18.3104 0.518707 18.5606 0.701877 18.7415C0.882812 18.9225 1.13299 19.0364 1.40775 19.0364H3.7063C3.98105 19.0364 4.23124 18.9225 4.4144 18.7415C4.49929 18.6544 4.57077 18.5539 4.62215 18.4399C5.27664 18.7504 5.85965 18.985 6.4315 19.1548C7.17088 19.376 7.88345 19.481 8.68314 19.481H15.2259C16.0993 19.4787 16.6599 18.9962 16.9079 18.3774C17.0017 18.1428 17.0486 17.8926 17.0486 17.6446C17.0486 17.3967 17.0017 17.1464 16.9079 16.9141C16.8811 16.8471 16.8498 16.7801 16.8163 16.7175C17.4127 16.5723 17.8081 16.1657 18.0069 15.672C18.1007 15.4397 18.1476 15.1895 18.1454 14.9415C18.1454 14.6935 18.0985 14.4433 18.0047 14.2088C17.96 14.0971 17.9042 13.9898 17.8371 13.8871C18.0896 13.7642 18.2928 13.5877 18.447 13.3755C18.5408 13.2504 18.6167 13.1141 18.6748 12.9689C18.7686 12.7343 18.8155 12.4841 18.8155 12.2362C18.8155 11.9882 18.7686 11.738 18.6748 11.5057ZM3.7063 18.0736H1.40775C1.38764 18.0736 1.36754 18.0534 1.36754 18.0333V10.2167C1.36531 10.1943 1.38541 10.1764 1.40551 10.1764H3.70407C3.72417 10.1764 3.74204 10.1943 3.74427 10.2167V18.0333C3.74651 18.0534 3.7264 18.0736 3.7063 18.0736ZM14.2988 8.66404H16.3383C16.756 8.6618 17.0173 8.8785 17.129 9.15775C17.1759 9.27168 17.1983 9.40125 17.1983 9.53082C17.1983 9.66039 17.1759 9.7922 17.129 9.90613C17.0173 10.1854 16.756 10.4021 16.3383 10.4021H14.2988V8.66404ZM10.3116 18.3796C10.3317 18.4265 10.3518 18.4734 10.3741 18.5181H8.68314C7.9728 18.5181 7.34735 18.4265 6.69955 18.2344C6.0875 18.0534 5.45087 17.7831 4.70703 17.4168V10.8734C6.56329 10.592 7.34064 9.57997 8.08672 8.60819C8.74122 7.75481 9.36668 6.93941 10.9124 6.93941C11.9355 6.93941 12.5721 7.03994 12.9206 7.30578C13.2244 7.53811 13.3339 7.96704 13.3339 8.64617C13.3339 8.6618 13.3361 8.67521 13.3361 8.68861V13.8469C13.3361 14.1552 13.2333 14.345 13.0814 14.4366C13.0055 14.4791 12.9117 14.5059 12.8067 14.5126C12.7732 14.5171 12.7374 14.5171 12.6995 14.5171C12.6771 14.5171 12.6548 14.5148 12.6302 14.5126C12.4694 14.4992 12.3019 14.4545 12.1343 14.3786C11.6161 14.1462 11.1559 13.6413 11.1559 12.9756V9.33423C11.1559 9.06839 10.9415 8.85392 10.6757 8.85392C10.4098 8.85392 10.1932 9.06839 10.1932 9.33423V9.88826C9.88268 10.5652 9.494 11.184 9.03161 11.7402C8.54688 12.3255 7.97727 12.8438 7.32501 13.2995C7.10833 13.4515 7.05472 13.7508 7.20662 13.9675C7.35852 14.1842 7.65561 14.2378 7.87228 14.0859C8.33244 13.7642 8.75462 13.4157 9.13883 13.0382C9.20138 13.1789 9.28179 13.3129 9.38008 13.4336C9.49623 13.5743 9.63473 13.6994 9.79556 13.8022C9.6727 13.9653 9.58112 14.1485 9.51857 14.3428C9.42922 14.6243 9.40242 14.9303 9.44709 15.2208C9.4873 15.5179 9.59899 15.8083 9.77546 16.0563C9.94746 16.2931 10.1753 16.4919 10.4635 16.6192C10.4031 16.7131 10.354 16.8136 10.3116 16.9163C10.2177 17.1509 10.1708 17.4011 10.1708 17.6469C10.1708 17.8926 10.2177 18.145 10.3116 18.3796ZM10.1954 11.7983V12.9019C10.1708 12.8796 10.1463 12.855 10.1262 12.8282C9.99213 12.6651 9.92735 12.4484 9.92959 12.2295C9.92959 12.2228 9.92959 12.2004 9.92959 12.1669C9.92959 12.1624 9.93182 12.1557 9.93182 12.149C10.0212 12.0351 10.1083 11.9167 10.1932 11.7983H10.1954ZM16.0188 18.0199C15.9072 18.2992 15.6436 18.5159 15.2281 18.5159H11.9936C11.5781 18.5181 11.3168 18.3014 11.2028 18.0222C11.1559 17.906 11.1336 17.7787 11.1336 17.6469C11.1336 17.5151 11.1559 17.3877 11.2028 17.2716C11.3168 16.9945 11.5781 16.7756 11.9936 16.7756H15.2281C15.6436 16.7734 15.9072 16.9923 16.0188 17.2693C16.0658 17.3855 16.0881 17.5128 16.0881 17.6446C16.0881 17.7764 16.0658 17.9038 16.0188 18.0199ZM17.1179 15.3146C17.0062 15.5938 16.7426 15.8105 16.3271 15.8105H11.2497C10.9214 15.8128 10.6913 15.6832 10.5573 15.4955C10.4724 15.3771 10.421 15.2364 10.3987 15.089C10.3786 14.9348 10.3875 14.7762 10.4344 14.631C10.4702 14.5148 10.5305 14.4076 10.6131 14.3182C10.9013 14.7382 11.3101 15.0577 11.7434 15.2543C12.0115 15.3727 12.2907 15.4486 12.561 15.4687C12.6168 15.4754 12.6749 15.4754 12.7307 15.4754C12.7821 15.4754 12.8357 15.4754 12.8871 15.471C13.1328 15.4486 13.3651 15.3816 13.5684 15.2632H13.5729C13.9593 15.0376 14.2318 14.6511 14.2877 14.0725L16.3226 14.068C16.7381 14.068 17.0017 14.287 17.1134 14.564C17.1603 14.6801 17.1826 14.8097 17.1849 14.9393C17.1849 15.0711 17.1625 15.1984 17.1156 15.3146H17.1179ZM17.7858 12.6115C17.6718 12.8907 17.4105 13.1074 16.9928 13.1074H14.2988V11.3671H16.9928C17.4105 11.3649 17.6718 11.5838 17.7858 11.8631C17.8327 11.977 17.855 12.1044 17.855 12.2362C17.855 12.368 17.8327 12.4953 17.7858 12.6115Z' fill='%23232323'/%3E%3Cpath d='M3.74632 18.0366C3.74632 18.0567 3.72622 18.0768 3.70612 18.0768H1.40757C1.38746 18.0768 1.36736 18.0567 1.36736 18.0366V10.2199C1.36512 10.1976 1.38523 10.1797 1.40533 10.1797H3.70388C3.72399 10.1797 3.74186 10.1976 3.74409 10.2199V18.0366H3.74632Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.1983 9.53086C17.1983 9.66267 17.1759 9.79224 17.129 9.90617C17.0173 10.1854 16.756 10.4021 16.3383 10.4021H14.2988V8.66408H16.3383C16.756 8.66185 17.0173 8.87854 17.129 9.15779C17.1759 9.27172 17.1983 9.40129 17.1983 9.53086Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.855 12.2362C17.855 12.368 17.8327 12.4954 17.7857 12.6115C17.6718 12.8908 17.4105 13.1075 16.9928 13.1075H14.2988V11.3672H16.9928C17.4105 11.365 17.6718 11.5839 17.7857 11.8631C17.8327 11.9771 17.855 12.1044 17.855 12.2362Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.1872 14.9416C17.1872 15.0734 17.1649 15.2007 17.1179 15.3169C17.0063 15.5961 16.7427 15.8128 16.3272 15.8128H11.2498C10.9215 15.815 10.6914 15.6855 10.5574 15.4978C10.4725 15.3794 10.4211 15.2387 10.3988 15.0912C10.3787 14.9371 10.3876 14.7785 10.4345 14.6333C10.4702 14.5171 10.5306 14.4099 10.6132 14.3205C10.9014 14.7405 11.3101 15.06 11.7435 15.2566C12.0115 15.375 12.2908 15.4509 12.5611 15.471C12.6169 15.4777 12.675 15.4777 12.7308 15.4777C12.7822 15.4777 12.8358 15.4777 12.8872 15.4733C13.1329 15.4509 13.3652 15.3839 13.5685 15.2655H13.573C13.9594 15.0399 14.2319 14.6534 14.2878 14.0748L16.3227 14.0703C16.7382 14.0703 17.0018 14.2892 17.1135 14.5663C17.1604 14.6824 17.1827 14.812 17.185 14.9416H17.1872Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M16.0883 17.6464C16.0883 17.7782 16.066 17.9055 16.019 18.0217C15.9074 18.3009 15.6438 18.5176 15.2283 18.5176H11.9938C11.5783 18.5199 11.317 18.3032 11.203 18.0239C11.1561 17.9078 11.1338 17.7804 11.1338 17.6486C11.1338 17.5168 11.1561 17.3895 11.203 17.2733C11.317 16.9963 11.5783 16.7774 11.9938 16.7774H15.2283C15.6438 16.7751 15.9074 16.9941 16.019 17.2711C16.066 17.3872 16.0883 17.5146 16.0883 17.6464Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M13.3361 8.69061V13.8489C13.3361 14.1572 13.2333 14.347 13.0814 14.4386C13.0055 14.4811 12.9117 14.5079 12.8067 14.5146C12.7732 14.5191 12.7374 14.5191 12.6995 14.5191C12.6771 14.5191 12.6548 14.5168 12.6302 14.5146C12.4694 14.5012 12.3019 14.4565 12.1343 14.3806C11.6161 14.1482 11.1559 13.6433 11.1559 12.9776V9.33623C11.1559 9.07039 10.9415 8.85593 10.6757 8.85593C10.4098 8.85593 10.1932 9.07039 10.1932 9.33623V9.89026C9.88268 10.5672 9.494 11.186 9.03161 11.7422C8.54688 12.3275 7.97727 12.8458 7.32501 13.3015C7.10833 13.4535 7.05472 13.7528 7.20662 13.9695C7.35852 14.1862 7.65561 14.2398 7.87228 14.0879C8.33244 13.7662 8.75462 13.4177 9.13883 13.0402C9.20138 13.1809 9.28179 13.3149 9.38008 13.4356C9.49624 13.5763 9.63473 13.7014 9.79556 13.8042C9.6727 13.9673 9.58112 14.1505 9.51857 14.3448C9.42922 14.6263 9.40242 14.9323 9.44709 15.2228C9.4873 15.5199 9.59899 15.8103 9.77546 16.0583C9.94746 16.2951 10.1753 16.4939 10.4635 16.6212C10.4031 16.7151 10.354 16.8156 10.3116 16.9184C10.2177 17.1529 10.1708 17.4031 10.1708 17.6489C10.1708 17.8946 10.2177 18.147 10.3116 18.3816C10.3317 18.4285 10.3518 18.4754 10.3741 18.5201H8.68314C7.9728 18.5201 7.34735 18.4285 6.69955 18.2364C6.0875 18.0554 5.45088 17.7851 4.70703 17.4188V10.8754C6.56329 10.594 7.34065 9.58197 8.08673 8.61019C8.74122 7.75681 9.36668 6.94141 10.9124 6.94141C11.9355 6.94141 12.5721 7.04194 12.9206 7.30778C13.2244 7.54011 13.3339 7.96904 13.3339 8.64817C13.3339 8.6638 13.3361 8.67721 13.3361 8.69061Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M36.1071 9.39911C35.9262 9.21592 35.676 9.10422 35.4012 9.10422H33.1027C32.8279 9.10422 32.5777 9.21369 32.3946 9.39687C32.2851 9.50634 32.198 9.64484 32.1488 9.79899C30.7326 9.54431 30.0938 8.71327 29.4817 7.91574C28.6798 6.86801 27.9136 5.86719 25.8965 5.86719C24.6568 5.86719 23.8437 6.02357 23.3053 6.43238C22.9301 6.7161 22.7089 7.09364 22.5995 7.58958H20.4707C19.5995 7.58958 19.0344 8.07212 18.7864 8.69093C18.6926 8.9255 18.6457 9.17571 18.6457 9.42144C18.6457 9.66718 18.6926 9.91962 18.7864 10.1542C18.8333 10.2681 18.8892 10.3798 18.9562 10.4826C18.7105 10.6032 18.5117 10.7775 18.3598 10.9852C18.266 11.1126 18.19 11.2511 18.1319 11.3963C18.0381 11.6286 17.9912 11.8788 17.9912 12.1268C17.9912 12.3748 18.0381 12.625 18.1319 12.8595C18.2079 13.0472 18.3129 13.2237 18.4469 13.3778C18.5899 13.5409 18.7641 13.6772 18.9696 13.7777C18.9026 13.8805 18.8467 13.9877 18.8021 14.0994C18.7083 14.334 18.6613 14.5842 18.6613 14.8321C18.6613 15.0801 18.7083 15.3303 18.8021 15.5626C19.0009 16.0564 19.3963 16.4629 19.9927 16.6081C19.9569 16.6707 19.9257 16.7377 19.8988 16.8047C19.805 17.0371 19.7581 17.2895 19.7581 17.5352C19.7581 17.781 19.805 18.0334 19.8988 18.268C20.1468 18.8868 20.7075 19.3693 21.5809 19.3693H28.1236C28.9233 19.3716 29.6359 19.2666 30.3752 19.0454C30.9471 18.8756 31.5301 18.6388 32.1846 18.3283C32.236 18.4422 32.3074 18.5428 32.3923 18.6299C32.5755 18.8109 32.8257 18.927 33.1004 18.927H35.399C35.6737 18.927 35.9239 18.8131 36.1049 18.6321C36.288 18.4512 36.3997 18.201 36.3997 17.924V10.1073C36.3997 9.83026 36.2903 9.58006 36.1071 9.39911ZM19.6777 9.04837C19.7894 8.76912 20.0507 8.55243 20.4685 8.55243H22.5079V10.2927H20.4685C20.0507 10.2927 19.7894 10.076 19.6777 9.79675C19.6308 9.68282 19.6085 9.55325 19.6085 9.42144C19.6085 9.28964 19.6308 9.1623 19.6777 9.04837ZM19.021 12.5021C18.9741 12.3859 18.9517 12.2586 18.9517 12.1268C18.9517 11.995 18.9741 11.8677 19.021 11.7537C19.1349 11.4745 19.3963 11.2555 19.814 11.2555H22.5079V12.998H19.814C19.3963 12.998 19.1349 12.7813 19.021 12.5021ZM25.6039 17.9128C25.49 18.192 25.2286 18.4087 24.8131 18.4087H21.5786C21.1632 18.4065 20.8996 18.1898 20.7879 17.9106C20.741 17.7944 20.7186 17.6671 20.7186 17.5352C20.7186 17.4034 20.741 17.2761 20.7879 17.1599C20.8996 16.8829 21.1654 16.664 21.5786 16.664H24.8131C25.2286 16.6662 25.49 16.8852 25.6039 17.1622C25.6508 17.2783 25.6731 17.4057 25.6731 17.5375C25.6731 17.6693 25.6508 17.7966 25.6039 17.9128ZM25.5592 15.7034H20.4819C20.0664 15.7012 19.8028 15.4845 19.6911 15.2052C19.6442 15.089 19.6219 14.9617 19.6219 14.8299C19.6219 14.6981 19.6442 14.5708 19.6911 14.4546C19.8028 14.1776 20.0664 13.9587 20.4819 13.9587H22.5168C22.5727 14.5395 22.8474 14.926 23.2339 15.1494H23.2383C23.4416 15.27 23.6739 15.337 23.9196 15.3616C23.971 15.3661 24.0246 15.3661 24.076 15.3661H24.0782C24.1341 15.3661 24.1922 15.3661 24.248 15.3594C24.5183 15.3393 24.7975 15.2633 25.0656 15.1449C25.4989 14.9483 25.9055 14.6288 26.1936 14.2089C26.2763 14.2982 26.3366 14.4054 26.3723 14.5216C26.4192 14.6668 26.4304 14.8254 26.4103 14.9796C26.388 15.127 26.3366 15.2678 26.2517 15.3862C26.1177 15.5738 25.8876 15.7034 25.5592 15.7034ZM32.0997 17.3052C31.3559 17.6715 30.7192 17.9441 30.1072 18.125C29.4594 18.3171 28.8339 18.4087 28.1236 18.4087H26.4326C26.455 18.3641 26.4751 18.3171 26.4952 18.2702C26.589 18.0357 26.6359 17.7855 26.6359 17.5375C26.6359 17.2895 26.589 17.0415 26.4952 16.807C26.4527 16.7042 26.4058 16.6037 26.3455 16.5099C26.6337 16.3825 26.8615 16.1837 27.0335 15.9469C27.21 15.6989 27.3217 15.4085 27.3619 15.1114C27.4043 14.821 27.3775 14.5149 27.2882 14.2334C27.2256 14.0391 27.134 13.8559 27.0112 13.6928C27.172 13.59 27.3105 13.4649 27.4267 13.3242C27.5249 13.2036 27.6054 13.0695 27.6679 12.9288C28.0521 13.3063 28.4743 13.6548 28.9345 13.9765C29.1511 14.1284 29.4482 14.0748 29.6001 13.8581C29.752 13.6414 29.6984 13.3421 29.4817 13.1902C28.8295 12.7344 28.2599 12.2162 27.7751 11.6308C27.3127 11.0746 26.9241 10.4558 26.6136 9.77888V9.22486C26.6136 8.95901 26.3969 8.74455 26.1311 8.74455C25.8652 8.74455 25.6508 8.95901 25.6508 9.22486V12.8662C25.6508 13.532 25.1907 14.0368 24.6724 14.2692C24.5049 14.3451 24.3374 14.3898 24.1765 14.4032C24.1519 14.4054 24.1296 14.4077 24.1073 14.4077C24.0693 14.4077 24.0336 14.4077 24.0001 14.4032C23.8951 14.3965 23.8012 14.3697 23.7253 14.3273C23.5734 14.2334 23.4706 14.0435 23.4706 13.7353V8.577C23.4706 8.5636 23.4729 8.55019 23.4729 8.53456C23.4729 7.85543 23.5846 7.4265 23.8884 7.1964C24.2368 6.93056 24.8735 6.83003 25.8965 6.83003C27.4423 6.83003 28.0655 7.64543 28.72 8.49881C29.4661 9.47059 30.2434 10.4826 32.1019 10.7618V17.3052H32.0997ZM26.6091 12.7925V11.6889C26.694 11.8073 26.7811 11.9257 26.8704 12.0397C26.8704 12.0464 26.8727 12.0531 26.8727 12.0575C26.8749 12.091 26.8749 12.1134 26.8749 12.1201C26.8771 12.339 26.8124 12.5557 26.6783 12.7188C26.6582 12.7456 26.6337 12.7702 26.6091 12.7925ZM35.437 17.924C35.437 17.9441 35.4169 17.9642 35.3967 17.9642H33.0982C33.0781 17.9642 33.058 17.9441 33.058 17.924V10.1073C33.0625 10.0849 33.0803 10.0671 33.1004 10.0671H35.399C35.4191 10.0671 35.4392 10.0849 35.4392 10.1073V17.924H35.437Z' fill='%230D661A'/%3E%3Cpath d='M35.4413 10.1066V17.9233C35.439 17.9434 35.4189 17.9635 35.3988 17.9635H33.1003C33.0802 17.9635 33.0601 17.9434 33.0601 17.9233V10.1066C33.0645 10.0843 33.0824 10.0664 33.1025 10.0664H35.401C35.4212 10.0664 35.4413 10.0843 35.4413 10.1066Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M25.6733 17.5375C25.6733 17.6694 25.6509 17.7967 25.604 17.9129C25.4901 18.1921 25.2287 18.4088 24.8133 18.4088H21.5788C21.1633 18.4066 20.8997 18.1899 20.788 17.9106C20.7411 17.7945 20.7188 17.6671 20.7188 17.5353C20.7188 17.4035 20.7411 17.2762 20.788 17.16C20.8997 16.883 21.1655 16.6641 21.5788 16.6641H24.8133C25.2287 16.6663 25.4901 16.8852 25.604 17.1622C25.6509 17.2784 25.6733 17.4057 25.6733 17.5375Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M22.5078 8.55078V10.291H20.4684C20.0507 10.291 19.7893 10.0744 19.6776 9.79511C19.6307 9.68117 19.6084 9.5516 19.6084 9.4198C19.6084 9.28799 19.6307 9.16066 19.6776 9.04672C19.7893 8.76748 20.0507 8.55078 20.4684 8.55078H22.5078Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M22.5078 11.2539V12.9964H19.8139C19.3962 12.9964 19.1348 12.7797 19.0209 12.5005C18.974 12.3843 18.9517 12.257 18.9517 12.1252C18.9517 11.9934 18.974 11.866 19.0209 11.7521C19.1348 11.4728 19.3962 11.2539 19.8139 11.2539H22.5078Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M26.4105 14.978C26.3882 15.1254 26.3368 15.2661 26.2519 15.3845C26.1179 15.5722 25.8878 15.7018 25.5594 15.7018H20.4821C20.0666 15.6995 19.803 15.4828 19.6913 15.2036C19.6444 15.0874 19.6221 14.9601 19.6221 14.8283C19.6221 14.6965 19.6444 14.5691 19.6913 14.453C19.803 14.176 20.0666 13.957 20.4821 13.957H22.517C22.5729 14.5379 22.8476 14.9243 23.2341 15.1477H23.2385C23.4418 15.2684 23.6741 15.3354 23.9198 15.36C23.9712 15.3644 24.0248 15.3644 24.0762 15.3644H24.0784C24.1343 15.3644 24.1924 15.3644 24.2482 15.3577C24.5185 15.3376 24.7977 15.2617 25.0658 15.1433C25.4991 14.9467 25.9057 14.6272 26.1938 14.2072C26.2765 14.2966 26.3368 14.4038 26.3725 14.52C26.4194 14.6652 26.4306 14.8238 26.4105 14.978Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M32.102 10.7599V17.3032C31.3559 17.6696 30.7193 17.9422 30.1072 18.1231C29.4594 18.3152 28.834 18.4068 28.1236 18.4068H26.4327C26.455 18.3622 26.4751 18.3152 26.4952 18.2683C26.589 18.0338 26.636 17.7836 26.636 17.5356C26.636 17.2876 26.589 17.0396 26.4952 16.8051C26.4528 16.7023 26.4059 16.6018 26.3456 16.508C26.6337 16.3806 26.8616 16.1818 27.0336 15.945C27.21 15.697 27.3217 15.4066 27.3619 15.1095C27.4044 14.8191 27.3776 14.513 27.2882 14.2315C27.2257 14.0372 27.1341 13.854 27.0112 13.6909C27.1721 13.5881 27.3106 13.463 27.4267 13.3223C27.525 13.2017 27.6054 13.0676 27.668 12.9269C28.0522 13.3044 28.4743 13.6529 28.9345 13.9746C29.1512 14.1265 29.4483 14.0729 29.6002 13.8562C29.7521 13.6395 29.6985 13.3402 29.4818 13.1883C28.8295 12.7325 28.2599 12.2142 27.7752 11.6289C27.3128 11.0727 26.9241 10.4539 26.6136 9.77698V9.22295C26.6136 8.95711 26.3969 8.74264 26.1311 8.74264C25.8653 8.74264 25.6509 8.95711 25.6509 9.22295V12.8643C25.6509 13.5301 25.1907 14.0349 24.6725 14.2673C24.5049 14.3432 24.3374 14.3879 24.1766 14.4013C24.152 14.4035 24.1297 14.4058 24.1073 14.4058C24.0694 14.4058 24.0336 14.4058 24.0001 14.4013C23.8951 14.3946 23.8013 14.3678 23.7254 14.3254C23.5735 14.2315 23.4707 14.0416 23.4707 13.7334V8.5751C23.4707 8.56169 23.4729 8.54829 23.4729 8.53265C23.4729 7.85352 23.5846 7.4246 23.8884 7.1945C24.2369 6.92865 24.8735 6.82812 25.8966 6.82812C27.4423 6.82812 28.0656 7.64353 28.7201 8.49691C29.4661 9.46869 30.2435 10.4807 32.102 10.7599Z' fill='%230D661A' fill-opacity='0.33'/%3E%3C/svg%3E%0A"); }
/* .status-block--killed-in-final .kanban-card__fists { background-image: url("data:image/svg+xml,%3Csvg width='37' height='27' viewBox='0 0 37 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.867 2.92453C13.0881 2.7056 13.4455 2.70783 13.6644 2.929L15.6458 4.93064C15.8647 5.1518 15.8625 5.50924 15.6413 5.72817C15.4202 5.9471 15.0628 5.94487 14.8439 5.7237L12.8625 3.72206C12.6436 3.5009 12.6458 3.14346 12.867 2.92453Z' fill='%23D04437'/%3E%3Cpath d='M17.875 3.74861C17.875 4.05914 18.1252 4.31158 18.4357 4.31381C18.7462 4.31381 18.9986 4.06584 19.0031 3.75532L19.0209 0.569664C19.0209 0.419988 18.9628 0.274779 18.8579 0.169782C18.7529 0.0647853 18.6099 0 18.4602 0C18.3106 0 18.1654 0.0580834 18.0604 0.16308C17.9554 0.268077 17.8951 0.411052 17.8951 0.560728L17.8772 3.74638L17.875 3.74861Z' fill='%23D04437'/%3E%3Cpath d='M19.0141 22.4754C19.0141 22.1648 18.7639 21.9124 18.4534 21.9102C18.1429 21.9102 17.8905 22.1581 17.886 22.4687L17.8682 25.6543C17.8682 25.9648 18.1183 26.2195 18.4288 26.2217C18.7393 26.224 18.994 25.9715 18.9962 25.661L19.0141 22.4754Z' fill='%23232323'/%3E%3Cpath d='M24.0271 22.501L22.0458 20.4993C21.8269 20.2781 21.4695 20.2759 21.2483 20.4948C21.0272 20.7138 21.0249 21.0712 21.2439 21.2924L23.2252 23.294C23.4441 23.5152 23.8015 23.5174 24.0227 23.2985C24.2438 23.0796 24.246 22.7221 24.0271 22.501Z' fill='%23232323'/%3E%3Cpath d='M15.6727 20.4642C15.4538 20.243 15.0964 20.2408 14.8753 20.4597L12.8738 22.4412C12.6527 22.6602 12.6504 23.0176 12.8693 23.2388C13.0882 23.4599 13.4457 23.4622 13.6668 23.2432L15.6683 21.2617C15.7732 21.1567 15.8358 21.0137 15.8358 20.864C15.8358 20.7144 15.7777 20.5714 15.6727 20.4642Z' fill='%23232323'/%3E%3Cpath d='M21.217 5.75907C21.322 5.86407 21.4649 5.92662 21.6146 5.92662C21.7643 5.92662 21.9072 5.86854 22.0145 5.76354L23.6161 4.17965C23.8372 3.96072 23.8394 3.60329 23.6205 3.38212C23.4016 3.16096 23.0442 3.15872 22.8231 3.37765L21.2215 4.96154C21.0003 5.18047 20.9981 5.53791 21.217 5.75907Z' fill='%23D04437'/%3E%3Cpath d='M18.6748 11.5057C18.5989 11.3158 18.4939 11.137 18.3598 10.9829C18.2213 10.8243 18.0516 10.6903 17.8505 10.592C17.9176 10.4892 17.9734 10.3775 18.0203 10.2636C18.1141 10.029 18.161 9.77879 18.161 9.53082C18.161 9.28285 18.1141 9.03488 18.0203 8.80031C17.7724 8.1815 17.2094 7.69896 16.3383 7.69896H14.2095C14.1 7.20525 13.8789 6.82771 13.5036 6.54399C12.9653 6.13294 12.15 5.97656 10.9102 5.97656C8.89312 5.97656 8.12917 6.97738 7.32501 8.02512C6.71295 8.82265 6.0741 9.65369 4.65789 9.9106C4.60874 9.75645 4.52163 9.61795 4.41217 9.50848C4.229 9.32529 3.97882 9.2136 3.70407 9.2136H1.40551C1.13076 9.2136 0.880578 9.32529 0.699643 9.50848C0.516474 9.68943 0.404785 9.93964 0.404785 10.2167V18.0333C0.407019 18.3104 0.518707 18.5606 0.701877 18.7415C0.882812 18.9225 1.13299 19.0364 1.40775 19.0364H3.7063C3.98105 19.0364 4.23124 18.9225 4.4144 18.7415C4.49929 18.6544 4.57077 18.5539 4.62215 18.4399C5.27664 18.7504 5.85965 18.985 6.4315 19.1548C7.17088 19.376 7.88345 19.481 8.68314 19.481H15.2259C16.0993 19.4787 16.6599 18.9962 16.9079 18.3774C17.0017 18.1428 17.0486 17.8926 17.0486 17.6446C17.0486 17.3967 17.0017 17.1464 16.9079 16.9141C16.8811 16.8471 16.8498 16.7801 16.8163 16.7175C17.4127 16.5723 17.8081 16.1657 18.0069 15.672C18.1007 15.4397 18.1476 15.1895 18.1454 14.9415C18.1454 14.6935 18.0985 14.4433 18.0047 14.2088C17.96 14.0971 17.9042 13.9898 17.8371 13.8871C18.0896 13.7642 18.2928 13.5877 18.447 13.3755C18.5408 13.2504 18.6167 13.1141 18.6748 12.9689C18.7686 12.7343 18.8155 12.4841 18.8155 12.2362C18.8155 11.9882 18.7686 11.738 18.6748 11.5057ZM3.7063 18.0736H1.40775C1.38764 18.0736 1.36754 18.0534 1.36754 18.0333V10.2167C1.36531 10.1943 1.38541 10.1764 1.40551 10.1764H3.70407C3.72417 10.1764 3.74204 10.1943 3.74427 10.2167V18.0333C3.74651 18.0534 3.7264 18.0736 3.7063 18.0736ZM14.2988 8.66404H16.3383C16.756 8.6618 17.0173 8.8785 17.129 9.15775C17.1759 9.27168 17.1983 9.40125 17.1983 9.53082C17.1983 9.66039 17.1759 9.7922 17.129 9.90613C17.0173 10.1854 16.756 10.4021 16.3383 10.4021H14.2988V8.66404ZM10.3116 18.3796C10.3317 18.4265 10.3518 18.4734 10.3741 18.5181H8.68314C7.9728 18.5181 7.34735 18.4265 6.69955 18.2344C6.0875 18.0534 5.45087 17.7831 4.70703 17.4168V10.8734C6.56329 10.592 7.34064 9.57997 8.08672 8.60819C8.74122 7.75481 9.36668 6.93941 10.9124 6.93941C11.9355 6.93941 12.5721 7.03994 12.9206 7.30578C13.2244 7.53811 13.3339 7.96704 13.3339 8.64617C13.3339 8.6618 13.3361 8.67521 13.3361 8.68861V13.8469C13.3361 14.1552 13.2333 14.345 13.0814 14.4366C13.0055 14.4791 12.9117 14.5059 12.8067 14.5126C12.7732 14.5171 12.7374 14.5171 12.6995 14.5171C12.6771 14.5171 12.6548 14.5148 12.6302 14.5126C12.4694 14.4992 12.3019 14.4545 12.1343 14.3786C11.6161 14.1462 11.1559 13.6413 11.1559 12.9756V9.33423C11.1559 9.06839 10.9415 8.85392 10.6757 8.85392C10.4098 8.85392 10.1932 9.06839 10.1932 9.33423V9.88826C9.88268 10.5652 9.494 11.184 9.03161 11.7402C8.54688 12.3255 7.97727 12.8438 7.32501 13.2995C7.10833 13.4515 7.05472 13.7508 7.20662 13.9675C7.35852 14.1842 7.65561 14.2378 7.87228 14.0859C8.33244 13.7642 8.75462 13.4157 9.13883 13.0382C9.20138 13.1789 9.28179 13.3129 9.38008 13.4336C9.49623 13.5743 9.63473 13.6994 9.79556 13.8022C9.6727 13.9653 9.58112 14.1485 9.51857 14.3428C9.42922 14.6243 9.40242 14.9303 9.44709 15.2208C9.4873 15.5179 9.59899 15.8083 9.77546 16.0563C9.94746 16.2931 10.1753 16.4919 10.4635 16.6192C10.4031 16.7131 10.354 16.8136 10.3116 16.9163C10.2177 17.1509 10.1708 17.4011 10.1708 17.6469C10.1708 17.8926 10.2177 18.145 10.3116 18.3796ZM10.1954 11.7983V12.9019C10.1708 12.8796 10.1463 12.855 10.1262 12.8282C9.99213 12.6651 9.92735 12.4484 9.92959 12.2295C9.92959 12.2228 9.92959 12.2004 9.92959 12.1669C9.92959 12.1624 9.93182 12.1557 9.93182 12.149C10.0212 12.0351 10.1083 11.9167 10.1932 11.7983H10.1954ZM16.0188 18.0199C15.9072 18.2992 15.6436 18.5159 15.2281 18.5159H11.9936C11.5781 18.5181 11.3168 18.3014 11.2028 18.0222C11.1559 17.906 11.1336 17.7787 11.1336 17.6469C11.1336 17.5151 11.1559 17.3877 11.2028 17.2716C11.3168 16.9945 11.5781 16.7756 11.9936 16.7756H15.2281C15.6436 16.7734 15.9072 16.9923 16.0188 17.2693C16.0658 17.3855 16.0881 17.5128 16.0881 17.6446C16.0881 17.7764 16.0658 17.9038 16.0188 18.0199ZM17.1179 15.3146C17.0062 15.5938 16.7426 15.8105 16.3271 15.8105H11.2497C10.9214 15.8128 10.6913 15.6832 10.5573 15.4955C10.4724 15.3771 10.421 15.2364 10.3987 15.089C10.3786 14.9348 10.3875 14.7762 10.4344 14.631C10.4702 14.5148 10.5305 14.4076 10.6131 14.3182C10.9013 14.7382 11.3101 15.0577 11.7434 15.2543C12.0115 15.3727 12.2907 15.4486 12.561 15.4687C12.6168 15.4754 12.6749 15.4754 12.7307 15.4754C12.7821 15.4754 12.8357 15.4754 12.8871 15.471C13.1328 15.4486 13.3651 15.3816 13.5684 15.2632H13.5729C13.9593 15.0376 14.2318 14.6511 14.2877 14.0725L16.3226 14.068C16.7381 14.068 17.0017 14.287 17.1134 14.564C17.1603 14.6801 17.1826 14.8097 17.1849 14.9393C17.1849 15.0711 17.1625 15.1984 17.1156 15.3146H17.1179ZM17.7858 12.6115C17.6718 12.8907 17.4105 13.1074 16.9928 13.1074H14.2988V11.3671H16.9928C17.4105 11.3649 17.6718 11.5838 17.7858 11.8631C17.8327 11.977 17.855 12.1044 17.855 12.2362C17.855 12.368 17.8327 12.4953 17.7858 12.6115Z' fill='%23232323'/%3E%3Cpath d='M3.74632 18.0366C3.74632 18.0567 3.72622 18.0768 3.70612 18.0768H1.40757C1.38746 18.0768 1.36736 18.0567 1.36736 18.0366V10.2199C1.36512 10.1976 1.38523 10.1797 1.40533 10.1797H3.70388C3.72399 10.1797 3.74186 10.1976 3.74409 10.2199V18.0366H3.74632Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.1983 9.53086C17.1983 9.66267 17.1759 9.79224 17.129 9.90617C17.0173 10.1854 16.756 10.4021 16.3383 10.4021H14.2988V8.66408H16.3383C16.756 8.66185 17.0173 8.87854 17.129 9.15779C17.1759 9.27172 17.1983 9.40129 17.1983 9.53086Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.855 12.2362C17.855 12.368 17.8327 12.4954 17.7857 12.6115C17.6718 12.8908 17.4105 13.1075 16.9928 13.1075H14.2988V11.3672H16.9928C17.4105 11.365 17.6718 11.5839 17.7857 11.8631C17.8327 11.9771 17.855 12.1044 17.855 12.2362Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M17.1872 14.9416C17.1872 15.0734 17.1649 15.2007 17.1179 15.3169C17.0063 15.5961 16.7427 15.8128 16.3272 15.8128H11.2498C10.9215 15.815 10.6914 15.6855 10.5574 15.4978C10.4725 15.3794 10.4211 15.2387 10.3988 15.0912C10.3787 14.9371 10.3876 14.7785 10.4345 14.6333C10.4702 14.5171 10.5306 14.4099 10.6132 14.3205C10.9014 14.7405 11.3101 15.06 11.7435 15.2566C12.0115 15.375 12.2908 15.4509 12.5611 15.471C12.6169 15.4777 12.675 15.4777 12.7308 15.4777C12.7822 15.4777 12.8358 15.4777 12.8872 15.4733C13.1329 15.4509 13.3652 15.3839 13.5685 15.2655H13.573C13.9594 15.0399 14.2319 14.6534 14.2878 14.0748L16.3227 14.0703C16.7382 14.0703 17.0018 14.2892 17.1135 14.5663C17.1604 14.6824 17.1827 14.812 17.185 14.9416H17.1872Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M16.0883 17.6464C16.0883 17.7782 16.066 17.9055 16.019 18.0217C15.9074 18.3009 15.6438 18.5176 15.2283 18.5176H11.9938C11.5783 18.5199 11.317 18.3032 11.203 18.0239C11.1561 17.9078 11.1338 17.7804 11.1338 17.6486C11.1338 17.5168 11.1561 17.3895 11.203 17.2733C11.317 16.9963 11.5783 16.7774 11.9938 16.7774H15.2283C15.6438 16.7751 15.9074 16.9941 16.019 17.2711C16.066 17.3872 16.0883 17.5146 16.0883 17.6464Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M13.3361 8.69061V13.8489C13.3361 14.1572 13.2333 14.347 13.0814 14.4386C13.0055 14.4811 12.9117 14.5079 12.8067 14.5146C12.7732 14.5191 12.7374 14.5191 12.6995 14.5191C12.6771 14.5191 12.6548 14.5168 12.6302 14.5146C12.4694 14.5012 12.3019 14.4565 12.1343 14.3806C11.6161 14.1482 11.1559 13.6433 11.1559 12.9776V9.33623C11.1559 9.07039 10.9415 8.85593 10.6757 8.85593C10.4098 8.85593 10.1932 9.07039 10.1932 9.33623V9.89026C9.88268 10.5672 9.494 11.186 9.03161 11.7422C8.54688 12.3275 7.97727 12.8458 7.32501 13.3015C7.10833 13.4535 7.05472 13.7528 7.20662 13.9695C7.35852 14.1862 7.65561 14.2398 7.87228 14.0879C8.33244 13.7662 8.75462 13.4177 9.13883 13.0402C9.20138 13.1809 9.28179 13.3149 9.38008 13.4356C9.49624 13.5763 9.63473 13.7014 9.79556 13.8042C9.6727 13.9673 9.58112 14.1505 9.51857 14.3448C9.42922 14.6263 9.40242 14.9323 9.44709 15.2228C9.4873 15.5199 9.59899 15.8103 9.77546 16.0583C9.94746 16.2951 10.1753 16.4939 10.4635 16.6212C10.4031 16.7151 10.354 16.8156 10.3116 16.9184C10.2177 17.1529 10.1708 17.4031 10.1708 17.6489C10.1708 17.8946 10.2177 18.147 10.3116 18.3816C10.3317 18.4285 10.3518 18.4754 10.3741 18.5201H8.68314C7.9728 18.5201 7.34735 18.4285 6.69955 18.2364C6.0875 18.0554 5.45088 17.7851 4.70703 17.4188V10.8754C6.56329 10.594 7.34065 9.58197 8.08673 8.61019C8.74122 7.75681 9.36668 6.94141 10.9124 6.94141C11.9355 6.94141 12.5721 7.04194 12.9206 7.30778C13.2244 7.54011 13.3339 7.96904 13.3339 8.64817C13.3339 8.6638 13.3361 8.67721 13.3361 8.69061Z' fill='%23232323' fill-opacity='0.25'/%3E%3Cpath d='M36.1071 9.39911C35.9262 9.21592 35.676 9.10422 35.4012 9.10422H33.1027C32.8279 9.10422 32.5777 9.21369 32.3946 9.39687C32.2851 9.50634 32.198 9.64484 32.1488 9.79899C30.7326 9.54431 30.0938 8.71327 29.4817 7.91574C28.6798 6.86801 27.9136 5.86719 25.8965 5.86719C24.6568 5.86719 23.8437 6.02357 23.3053 6.43238C22.9301 6.7161 22.7089 7.09364 22.5995 7.58958H20.4707C19.5995 7.58958 19.0344 8.07212 18.7864 8.69093C18.6926 8.9255 18.6457 9.17571 18.6457 9.42144C18.6457 9.66718 18.6926 9.91962 18.7864 10.1542C18.8333 10.2681 18.8892 10.3798 18.9562 10.4826C18.7105 10.6032 18.5117 10.7775 18.3598 10.9852C18.266 11.1126 18.19 11.2511 18.1319 11.3963C18.0381 11.6286 17.9912 11.8788 17.9912 12.1268C17.9912 12.3748 18.0381 12.625 18.1319 12.8595C18.2079 13.0472 18.3129 13.2237 18.4469 13.3778C18.5899 13.5409 18.7641 13.6772 18.9696 13.7777C18.9026 13.8805 18.8467 13.9877 18.8021 14.0994C18.7083 14.334 18.6613 14.5842 18.6613 14.8321C18.6613 15.0801 18.7083 15.3303 18.8021 15.5626C19.0009 16.0564 19.3963 16.4629 19.9927 16.6081C19.9569 16.6707 19.9257 16.7377 19.8988 16.8047C19.805 17.0371 19.7581 17.2895 19.7581 17.5352C19.7581 17.781 19.805 18.0334 19.8988 18.268C20.1468 18.8868 20.7075 19.3693 21.5809 19.3693H28.1236C28.9233 19.3716 29.6359 19.2666 30.3752 19.0454C30.9471 18.8756 31.5301 18.6388 32.1846 18.3283C32.236 18.4422 32.3074 18.5428 32.3923 18.6299C32.5755 18.8109 32.8257 18.927 33.1004 18.927H35.399C35.6737 18.927 35.9239 18.8131 36.1049 18.6321C36.288 18.4512 36.3997 18.201 36.3997 17.924V10.1073C36.3997 9.83026 36.2903 9.58006 36.1071 9.39911ZM19.6777 9.04837C19.7894 8.76912 20.0507 8.55243 20.4685 8.55243H22.5079V10.2927H20.4685C20.0507 10.2927 19.7894 10.076 19.6777 9.79675C19.6308 9.68282 19.6085 9.55325 19.6085 9.42144C19.6085 9.28964 19.6308 9.1623 19.6777 9.04837ZM19.021 12.5021C18.9741 12.3859 18.9517 12.2586 18.9517 12.1268C18.9517 11.995 18.9741 11.8677 19.021 11.7537C19.1349 11.4745 19.3963 11.2555 19.814 11.2555H22.5079V12.998H19.814C19.3963 12.998 19.1349 12.7813 19.021 12.5021ZM25.6039 17.9128C25.49 18.192 25.2286 18.4087 24.8131 18.4087H21.5786C21.1632 18.4065 20.8996 18.1898 20.7879 17.9106C20.741 17.7944 20.7186 17.6671 20.7186 17.5352C20.7186 17.4034 20.741 17.2761 20.7879 17.1599C20.8996 16.8829 21.1654 16.664 21.5786 16.664H24.8131C25.2286 16.6662 25.49 16.8852 25.6039 17.1622C25.6508 17.2783 25.6731 17.4057 25.6731 17.5375C25.6731 17.6693 25.6508 17.7966 25.6039 17.9128ZM25.5592 15.7034H20.4819C20.0664 15.7012 19.8028 15.4845 19.6911 15.2052C19.6442 15.089 19.6219 14.9617 19.6219 14.8299C19.6219 14.6981 19.6442 14.5708 19.6911 14.4546C19.8028 14.1776 20.0664 13.9587 20.4819 13.9587H22.5168C22.5727 14.5395 22.8474 14.926 23.2339 15.1494H23.2383C23.4416 15.27 23.6739 15.337 23.9196 15.3616C23.971 15.3661 24.0246 15.3661 24.076 15.3661H24.0782C24.1341 15.3661 24.1922 15.3661 24.248 15.3594C24.5183 15.3393 24.7975 15.2633 25.0656 15.1449C25.4989 14.9483 25.9055 14.6288 26.1936 14.2089C26.2763 14.2982 26.3366 14.4054 26.3723 14.5216C26.4192 14.6668 26.4304 14.8254 26.4103 14.9796C26.388 15.127 26.3366 15.2678 26.2517 15.3862C26.1177 15.5738 25.8876 15.7034 25.5592 15.7034ZM32.0997 17.3052C31.3559 17.6715 30.7192 17.9441 30.1072 18.125C29.4594 18.3171 28.8339 18.4087 28.1236 18.4087H26.4326C26.455 18.3641 26.4751 18.3171 26.4952 18.2702C26.589 18.0357 26.6359 17.7855 26.6359 17.5375C26.6359 17.2895 26.589 17.0415 26.4952 16.807C26.4527 16.7042 26.4058 16.6037 26.3455 16.5099C26.6337 16.3825 26.8615 16.1837 27.0335 15.9469C27.21 15.6989 27.3217 15.4085 27.3619 15.1114C27.4043 14.821 27.3775 14.5149 27.2882 14.2334C27.2256 14.0391 27.134 13.8559 27.0112 13.6928C27.172 13.59 27.3105 13.4649 27.4267 13.3242C27.5249 13.2036 27.6054 13.0695 27.6679 12.9288C28.0521 13.3063 28.4743 13.6548 28.9345 13.9765C29.1511 14.1284 29.4482 14.0748 29.6001 13.8581C29.752 13.6414 29.6984 13.3421 29.4817 13.1902C28.8295 12.7344 28.2599 12.2162 27.7751 11.6308C27.3127 11.0746 26.9241 10.4558 26.6136 9.77888V9.22486C26.6136 8.95901 26.3969 8.74455 26.1311 8.74455C25.8652 8.74455 25.6508 8.95901 25.6508 9.22486V12.8662C25.6508 13.532 25.1907 14.0368 24.6724 14.2692C24.5049 14.3451 24.3374 14.3898 24.1765 14.4032C24.1519 14.4054 24.1296 14.4077 24.1073 14.4077C24.0693 14.4077 24.0336 14.4077 24.0001 14.4032C23.8951 14.3965 23.8012 14.3697 23.7253 14.3273C23.5734 14.2334 23.4706 14.0435 23.4706 13.7353V8.577C23.4706 8.5636 23.4729 8.55019 23.4729 8.53456C23.4729 7.85543 23.5846 7.4265 23.8884 7.1964C24.2368 6.93056 24.8735 6.83003 25.8965 6.83003C27.4423 6.83003 28.0655 7.64543 28.72 8.49881C29.4661 9.47059 30.2434 10.4826 32.1019 10.7618V17.3052H32.0997ZM26.6091 12.7925V11.6889C26.694 11.8073 26.7811 11.9257 26.8704 12.0397C26.8704 12.0464 26.8727 12.0531 26.8727 12.0575C26.8749 12.091 26.8749 12.1134 26.8749 12.1201C26.8771 12.339 26.8124 12.5557 26.6783 12.7188C26.6582 12.7456 26.6337 12.7702 26.6091 12.7925ZM35.437 17.924C35.437 17.9441 35.4169 17.9642 35.3967 17.9642H33.0982C33.0781 17.9642 33.058 17.9441 33.058 17.924V10.1073C33.0625 10.0849 33.0803 10.0671 33.1004 10.0671H35.399C35.4191 10.0671 35.4392 10.0849 35.4392 10.1073V17.924H35.437Z' fill='%23D04437'/%3E%3Cpath d='M35.4413 10.1066V17.9233C35.439 17.9434 35.4189 17.9635 35.3988 17.9635H33.1003C33.0802 17.9635 33.0601 17.9434 33.0601 17.9233V10.1066C33.0645 10.0843 33.0824 10.0664 33.1025 10.0664H35.401C35.4212 10.0664 35.4413 10.0843 35.4413 10.1066Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M25.6733 17.5375C25.6733 17.6694 25.6509 17.7967 25.604 17.9129C25.4901 18.1921 25.2287 18.4088 24.8133 18.4088H21.5788C21.1633 18.4066 20.8997 18.1899 20.788 17.9106C20.7411 17.7945 20.7188 17.6671 20.7188 17.5353C20.7188 17.4035 20.7411 17.2762 20.788 17.16C20.8997 16.883 21.1655 16.6641 21.5788 16.6641H24.8133C25.2287 16.6663 25.4901 16.8852 25.604 17.1622C25.6509 17.2784 25.6733 17.4057 25.6733 17.5375Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M22.5078 8.55078V10.291H20.4684C20.0507 10.291 19.7893 10.0744 19.6776 9.79511C19.6307 9.68117 19.6084 9.5516 19.6084 9.4198C19.6084 9.28799 19.6307 9.16066 19.6776 9.04672C19.7893 8.76748 20.0507 8.55078 20.4684 8.55078H22.5078Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M22.5078 11.2539V12.9964H19.8139C19.3962 12.9964 19.1348 12.7797 19.0209 12.5005C18.974 12.3843 18.9517 12.257 18.9517 12.1252C18.9517 11.9934 18.974 11.866 19.0209 11.7521C19.1348 11.4728 19.3962 11.2539 19.8139 11.2539H22.5078Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M26.4105 14.978C26.3882 15.1254 26.3368 15.2661 26.2519 15.3845C26.1179 15.5722 25.8878 15.7018 25.5594 15.7018H20.4821C20.0666 15.6995 19.803 15.4828 19.6913 15.2036C19.6444 15.0874 19.6221 14.9601 19.6221 14.8283C19.6221 14.6965 19.6444 14.5691 19.6913 14.453C19.803 14.176 20.0666 13.957 20.4821 13.957H22.517C22.5729 14.5379 22.8476 14.9243 23.2341 15.1477H23.2385C23.4418 15.2684 23.6741 15.3354 23.9198 15.36C23.9712 15.3644 24.0248 15.3644 24.0762 15.3644H24.0784C24.1343 15.3644 24.1924 15.3644 24.2482 15.3577C24.5185 15.3376 24.7977 15.2617 25.0658 15.1433C25.4991 14.9467 25.9057 14.6272 26.1938 14.2072C26.2765 14.2966 26.3368 14.4038 26.3725 14.52C26.4194 14.6652 26.4306 14.8238 26.4105 14.978Z' fill='%230D661A' fill-opacity='0.33'/%3E%3Cpath d='M32.102 10.7599V17.3032C31.3559 17.6696 30.7193 17.9422 30.1072 18.1231C29.4594 18.3152 28.834 18.4068 28.1236 18.4068H26.4327C26.455 18.3622 26.4751 18.3152 26.4952 18.2683C26.589 18.0338 26.636 17.7836 26.636 17.5356C26.636 17.2876 26.589 17.0396 26.4952 16.8051C26.4528 16.7023 26.4059 16.6018 26.3456 16.508C26.6337 16.3806 26.8616 16.1818 27.0336 15.945C27.21 15.697 27.3217 15.4066 27.3619 15.1095C27.4044 14.8191 27.3776 14.513 27.2882 14.2315C27.2257 14.0372 27.1341 13.854 27.0112 13.6909C27.1721 13.5881 27.3106 13.463 27.4267 13.3223C27.525 13.2017 27.6054 13.0676 27.668 12.9269C28.0522 13.3044 28.4743 13.6529 28.9345 13.9746C29.1512 14.1265 29.4483 14.0729 29.6002 13.8562C29.7521 13.6395 29.6985 13.3402 29.4818 13.1883C28.8295 12.7325 28.2599 12.2142 27.7752 11.6289C27.3128 11.0727 26.9241 10.4539 26.6136 9.77698V9.22295C26.6136 8.95711 26.3969 8.74264 26.1311 8.74264C25.8653 8.74264 25.6509 8.95711 25.6509 9.22295V12.8643C25.6509 13.5301 25.1907 14.0349 24.6725 14.2673C24.5049 14.3432 24.3374 14.3879 24.1766 14.4013C24.152 14.4035 24.1297 14.4058 24.1073 14.4058C24.0694 14.4058 24.0336 14.4058 24.0001 14.4013C23.8951 14.3946 23.8013 14.3678 23.7254 14.3254C23.5735 14.2315 23.4707 14.0416 23.4707 13.7334V8.5751C23.4707 8.56169 23.4729 8.54829 23.4729 8.53265C23.4729 7.85352 23.5846 7.4246 23.8884 7.1945C24.2369 6.92865 24.8735 6.82812 25.8966 6.82812C27.4423 6.82812 28.0656 7.64353 28.7201 8.49691C29.4661 9.46869 30.2435 10.4807 32.102 10.7599Z' fill='%230D661A' fill-opacity='0.33'/%3E%3C/svg%3E%0A"); } */

.kanban-card__stars {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.kanban-card__stars > * {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- СТИЛІ ДЛЯ DRAG & DROP --- */

/* --- СТИЛІ ДЛЯ DRAG & DROP (ДОПОВНЕНО ДЛЯ АНІМАЦІЙ) --- */

/* Плейсхолдер, що з'являється на місці взятої картки */
.placeholder {
    background-color: #f0f0f0;
    border: 2px dashed #cccccc;
    border-radius: 3px;
    margin-bottom: 8px;

	display: none;
}

.status-block__cards.dragging .placeholder,
.status-block__cards.dragging::after {
    display: none !important;
}

/* Стиль для картки, яку тягнуть */
.status-block--approved .kanban-card.is-dragging {
	background-color: #F5EEB3;
}
.status-block--term-sheet-sent .kanban-card.is-dragging {
	background-color: #A9DBEB;
}
.status-block--contracts-out .kanban-card.is-dragging {
	background-color: #a9d6b1;
}
.status-block--contracts-in .kanban-card.is-dragging {
	background-color: #6EC37D;
}
.status-block--killed-in-final .kanban-card.is-dragging {
	background-color: #F8D2CF;
}

.kanban-card.is-dragging > * {
    opacity: 0;
}

/* Стиль для контейнера, над яким зараз знаходиться картка */
.status-block__cards::after {
	opacity: 0;
	overflow: hidden;
	height: 0;
	width: 100%;
	border: 0;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	content: 'Drop here';
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	text-transform: capitalize;
}

.status-block__cards.is-over::after {
	height: 90px;
	opacity: 1;
	border: 1px dashed #727272;
}

.status-block__cards.is-over:not(:first-child)::after {
	margin-top: 6px;
}

.status-block--approved .status-block__cards.is-over::after {
	border-color: #EB9B00;
}
.status-block--term-sheet-sent .status-block__cards.is-over::after {
	border-color: #01A7DB;
}
.status-block--contracts-out .status-block__cards.is-over::after {
	border-color: #159C2A;
}
.status-block--contracts-in .status-block__cards.is-over::after {
	border-color: #0D661A;
}
.status-block--killed-in-final .status-block__cards.is-over::after {
	border-color: #D04437;
}

.status-block.is-dragging .status-block__cards::after {
	display: none;
}

/* Показуємо порожні блоки тільки під час перетягування */
.kanban-board-wrapper.is-dragging .status-block__cards:empty,
.kanban-board-wrapper.is-dragging .status-block__cards.empty {
    display: flex; /* Робимо порожні контейнери видимими */
}
.status-block__cards:empty,
.status-block__cards.empty {
    display: none; /* Ховаємо за замовчуванням */
}

.approval__buttons {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    font-family: 'Urbanist', sans-serif;
}

.approval__switch {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 3px;
    overflow: hidden;
    order: 2;
}

.approval__switch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    height: 40px;
    color: #808080;
    background-color: #E8E9E8;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.approval__switch-btn:hover {
    background-color: #159C2A80;
    color: #fff;
}

.approval__switch-btn--active,
.approval__switch-btn--active:hover {
    background-color: #159C2A;
    color: #fff;
}

/* ==========================================================================
   Kanban Navigation (ADDED)
   ========================================================================== */

.kanban-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.kanban-nav__btn {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #EEEEEE;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease-in-out;
}

.kanban-nav__btn:hover {
    background-color: #f8f9fa;
}

.kanban-nav__btn svg {
    width: 8px;
    height: 14px;
}

.kanban-nav__btn svg path {
    stroke: #646564;
}

.kanban-nav__btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.kanban-nav__btn:disabled:hover {
    background-color: #fff;
}

/* ==========================================================================
   Approval Table Styles
   ========================================================================== */

.approval-table__container {
    width: 100%;
    height: calc(350px + 96px); /* Same as other chart containers */
    position: relative;
    font-family: 'Urbanist', sans-serif;
    display: flex;
    flex-direction: column;
}

.approval-table {
    width: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    height: 100%;
    border-radius: 3px;
    border-bottom: 1px solid #d3d3d3; /* Match target style */
}

.table__header, .table__footer, .table__row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1.5fr 1.5fr 1.5fr;
    align-items: center;
    border-top: 1px solid #d3d3d3; /* Match target style */
}

.table__row {
    padding: 12px 15px;
}

.table__row:hover {
    background: linear-gradient(0deg,
			rgba(241, 249, 242, 0.7) 0%,
			rgba(241, 249, 242, 0.7) 100%),
		#fff;
}

.table__header {
    font-weight: 600; /* Similar to Sofia Pro-M */
    font-size: 16px; /* Match target style */
    color: #232323; /* Match target style */
    background-color: #f9f9f9; /* Match target style */
    position: sticky;
    top: 0;
    z-index: 2;
    border-top: none; /* Header should not have a top border */
    padding: 15px 25px 15px 15px;
}

.table__body {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #159C2A #f1f1f1;
}
.table__body::-webkit-scrollbar {
    width: 6px;
}
.table__body::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.table__body::-webkit-scrollbar-thumb {
    background: #159C2A;
    border-radius: 3px;
}

.table__footer {
    font-weight: 700;
    font-size: 16px;
    background-color: #f9f9f9; /* Match target style */
    border-bottom: none;
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding: 15px 25px 15px 15px;
}

.table__cell {
    white-space: normal; /* Позволяет перенос текста */
    word-break: break-all; /* Принудительно переносит длинные строки, включая числа */
    font-size: 16px;
    line-height: 1.2;
    color: #232323;
    text-align: left;
}

.table__header .table__cell {
    text-transform: capitalize;
    word-break: normal; 
}

.table__cell--clickable {
    color: #232323;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
}

.table__cell--clickable:hover {
    color: #159C2A;
}

.table__footer .table__cell {
    font-size: 16px; /* Match target style */
    font-weight: 700;
    color: #232323; /* Match target style */
}

.table__cell--approvals {
    cursor: pointer;
}

.table__row--active,
.table__row--active:hover {
    background: #E8F6EA !important;
}

.table__cell--clickable {
    color: #232323;
    /* cursor: pointer; - видалено, бо тепер це в table__cell--approvals */
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .table__header .table__cell {
        word-break: break-all; 
    }
}

/* ==========================================================================
   Popup Styles
   ========================================================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 1000;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #fff;
    padding: 15px 20px 30px;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    z-index: 1001;
}

.popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.popup-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.popup h2 {
    font-size: 24px;
    font-family: 'Urbanist', sans-serif;
    color: #232323;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: auto;
}