/* новые стили интерфейса */

.tab_mechanism-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0px auto 10px auto;
}

.tab_mechanism-wrapper {
    display: flex;
    background-color: #7D99CC; /* синий фон */
    /*padding: 10px 0;*/
    /*border-radius: 4px 4px 0 0;*/
    justify-content: space-between;
}

.tab_mechanism {
    padding: 8px 16px;
    color: black;
    font-weight:normal;
    cursor: pointer;
    text-align: left;
    /*flex: 1;*/
    transition: background-color 0.2s;
    background-color: #7D99CC; /* синий фон */
    margin-left: 0;
}

.tab_mechanism:hover {/*наведение курсора*/
    /*background-color: #7992c2; /* фон при наведении */
    /*border: 1px solid white;*/
    /*font-style: italic;*/
    cursor: pointer;
}

.tab_mechanism.active {
    color: white;
    font-weight:bold;
}

.arrow-indicator {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #7D99CC; /* цвет стрелки = фону */
    transform: translateX(0); /* будет меняться через JS */
    transition: transform 0.3s ease;
}

.magnitude-block.mechanism{
    margin: 1px;
    /*padding-bottom: 1px;*/
    max-width: 798px;
    /*border: 1px dashed #becace;  /*#becace*/
    }

div.magnitude-edit.mechanism{
    margin: 1px;
    }