.measureTool {
    display: flex;
    flex-direction: column;
}

.measureTool__toolbox {
    background-color: #ffffff;
    display: flex;
    justify-content: stretch;

    border-radius: 12px;

    padding: 30px 20px;
}

.measureTool__toolbox_wrapper {
    background-color: #e1e4e6;
    border-radius: 12px;

    display: flex;
    flex-direction: row;

    width: 100%;
}

.measureTool__button {
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 12px;

    transition: background-color 0.2s ease-in-out;

    cursor: pointer;

    background-color: #e1e4e6;

    font-family: "OpenSans";
    font-size: 14px;
    font-weight: 600;
}
.measureTool__button:hover,
.measureTool__button_state_active {
    background-color: #1e2022;
    color: #ffffff;
}
