﻿/* Серый фон для контента */
.systemBackBlock {
    background: #F4F4F4;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    margin-left: 0;
    overflow: auto;
}

/* Основной рабочий блок */
.systemBlock {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Блок для названия вкладки и функциональных кнопок */
.systemHeaderLine {
    background: white;
    border-radius: 12px;
    color: #848484;
    padding: 16px;
    display: flex;
    align-items: center;
    font-family: 'Inter';
    font-weight: 500;
    margin-bottom: 16px;
}

    .systemHeaderLine > .Active {
        color: #0CAF89;
    }

    .systemHeaderLine > div {
        cursor: default;
    }

    .systemHeaderLine > a {
        color: inherit;
    }

.systemHeaderLineArrow {
    cursor: default;
    margin: 0 12px;
}

/* Блок для разделения контента справочной информацией и основного функционала */
.systemContentRowBlock {
    display: block;
}

@media only screen and (min-width: 992px) {
    .systemContentRowBlock {
        display: flex;
    }
}

/* Мальнький блок с информацие в основном слева от рабочей области */
.systemContentRowMinDataBlock {
    background: white;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

@media only screen and (min-width: 992px) {
    .systemContentRowMinDataBlock {
        min-width: 292px;
        max-width: 292px;
        margin-right: 16px;
    }
}

.systemContentRowContentBlock {
    flex-grow: 1;
    background: white;
    padding: 16px;
    border-radius: 12px;
}

.systemContentRowContentColumnBlock {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.systemContentRowContentColumnItemBlock {
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: white;
}

    .systemContentRowContentColumnItemBlock:last-child {
        margin-bottom: 0;
    }

.systemContentBlock {
    background: white;
    border-radius: 12px;
    padding: 16px;
}

    .systemContentBlock.MB {
        margin-bottom: 16px;
    }

.systemTitlePage {
    color: #08110E;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 20px;
    cursor: default;
}

.systemInput {
    padding: 8px 12px;
    font-size: 12px;
    font-family: 'Inter';
    outline: none;
    font-weight: 500;
    color: rgba(27, 31, 59, 0.8);
    border: 1px solid #E6E6E6;
    border-radius: 8px;
}

    .systemInput::placeholder {
        font-weight: 400;
        color: rgba(27, 31, 59, 0.65);
    }

.systemOptionButton {
    color: #0CAF89;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    width: max-content;
}

.systemTitleBlock {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 14px;
    cursor: default;
    margin-bottom: 12px;
    margin-top: 12px;
}

.systemTitle {
    color: #868686;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

.systemTextData {
    color: black;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    max-width: 277px;
}

div:last-child > .systemTextData {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
    .systemBackBlock {
        margin-left: 76px;
    }
}

@media only screen and (min-width: 1280px) {
    .systemBlock {
        max-width: 1280px;
    }
}

.systemPageTitle {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 21px;
    color: #000000;
    display: flex;
    justify-content: space-between;
}

.systemOptionButton {
    display: flex;
    align-items: center;
    font-family: 'Inter';
    font-weight: 500;
    color: #0CAF89 !important;
    font-size: 13px;
    background: transparent !important;
    border: none;
}

.systemStepBlock {
    display: none;
    flex-direction: column
}

    .systemStepBlock.Open {
        display: flex;
    }

.systemStepItem {
    width: 60px;
    position: relative;
    text-align: center;
    background: white;
    color: #edecf0;
    font-family: 'SourceSansPro-Regular';
}

    .systemStepItem.Processing {
        background: #edecf0 !important;
        color: #54476e !important;
    }

    .systemStepItem.Active {
        font-family: 'SourceSansPro-SemiBold';
        background: #54476e !important;
        color: #edecf0 !important;
    }

    .systemStepItem:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 0;
        border-left: 5px solid #f4f4f4;
        border-top: 15px solid transparent;
        border-bottom: 11px solid transparent;
    }

    .systemStepItem:before {
        content: "";
        position: absolute;
        right: -10px;
        bottom: 0;
        width: 0;
        height: 0;
        border-left: 10px solid white;
        border-top: 13px solid transparent;
        border-bottom: 11px solid transparent;
    }

    .systemStepItem.Processing:before {
        border-left: 10px solid #edecf0;
    }

    .systemStepItem.Active:before {
        border-left: 10px solid #54476e;
    }

.systemGreenText {
    color: #0CAF89 !important;
}

.systemYellowText {
    color: #F29A49 !important;
}

.systemRedText {
    color: #F34F49 !important;
}

.systemGrayText {
    color: #686666 !important;
}

.systemModalBlock {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: #00000080;
    z-index: 1000;
}

    .systemModalBlock.Open {
        display: flex;
    }

.systemModalContent {
    padding: 24px;
    width: 600px;
    border-radius: 4px;
    background: white;
    max-height: 90%;
    overflow: auto;
}

.systemModalTitle {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
}

.systemAttentionText {
    font-family: 'Inter';
    font-weight: 500;
    color: #FF9900;
    font-size:14px;
}

/* Тэг */
.systemTag {
    font-size: 13px;
    padding: 0px 10px;
    border-radius: 16px;
    color: white;
    width: max-content;
    font-family: 'Inter';
    font-weight: 400;
}

    .systemTag.blue {
        color: white;
        background: #5772FF;
    }

/* tooltip /////////////////////////////////*/
.systemToolTip {
    position: relative;
    display: flex;
    cursor: pointer;
    word-break: break-word;
}

    .systemToolTip .systemToolTipText {
        visibility: hidden;
        width: max-content;
        max-width: 300px;
        background-color: white;
        color: black;
        border-radius: 6px;
        padding: 16px;
        position: absolute;
        z-index: 1;
        bottom: 150%;
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
    }

    .systemToolTip:hover .systemToolTipText {
        visibility: visible;
    }
/*///////////////////////////////////*/
