.tab-widget {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.tab-widget__buttons {
    z-index: 4;
    position: relative;
    /* position: absolute; */
    /* top: -10px; */
    right: 0;
    padding: 5px 0;
    width: 330px;
    background: linear-gradient(197.45deg, #393939 11.14%, #353535 103.81%);
    box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.14), inset 3px 4px 4px rgba(214, 214, 214, 0.03);
    border-radius: 13px;
    margin-left: auto;
}

.tab-widget__buttons-content {
    display: flex;
    align-items: center;
}

.tab-widget__button {
    display: flex;
    flex: 1 1;
    padding: 0 20px;
    font-size: 16px;
    font-family: 'Helvetica';
    font-weight: 200;
    letter-spacing: 1px;
    color: rgba(148, 148, 148, 1);
    cursor: pointer;
    transition: color .2s ease;
}

.tab-widget__button:not(:last-child) {
    border: solid 2px rgba(148, 148, 148, 0.295);
    border-width: 0 2px 0 0;
}

.tab-widget__button--active {
    color: rgba(255, 186, 10, 1);
}

.tab-widget__button:hover {
    color: white;
}

.tab-widget__button-content {
    display: inline-block;
    width: min-content;
    margin: auto;
    pointer-events: none;
}

.tab-widget__tabs {
    position: relative;
    flex: 1 auto;
    overflow: hidden;
    /* height: 100%; */
}

.tab-widget__tab {
    position: relative;
    display: none;
    width: 100%;
    height: 100%;
}

.tab-widget__tab-init {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    visibility: hidden;
}

.tab-widget__tab--active {
    display: block;
    visibility: visible;
}

.tab-widget__button--disabled {
    color: #575757;
    cursor: default;
}

.tab-widget__button--disabled:hover {
    color: #575757;
    cursor: default;
}

.tab-widget__tab--disabled {
    display: none;
}

.tab-widget__edit-main-tab {
  overflow-y: auto;
}
