.vert {
    height: 100%;
    /*width: 100%;*/
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: -15px;
}

.vert .column {
    display: flex;
    flex: 1 1 auto;
    /*height: calc(100vh - 49px);*/
    flex-direction: column;
    order: 1;
    padding: 0;
    transform: translate3d(0px, 0px, 0px);
    background-color: white;
}

.dashboard-component.vert .column {
    height: auto;
}

.vert .column.menu {
    flex: none;
    width: 40px;
    padding-top: 10px;
    border-right: 1px solid #e9e9e9;
    overflow-x: hidden;
    overflow-y: auto;
}
.vert .column.menu ul {
    padding: 0;
    white-space: nowrap;
    list-style-type: none;
    transform: rotate(90deg);
}

.vert .column.menu ul li {
    display: inline;
    padding: 10px 10px 10px 10px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    white-space: nowrap;
    color: #a8a8a8;
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.vert .column.menu ul li:hover {
    background-color: #f6f6f6;
    color: #979797;
}

.vert .column.menu ul li.selected {
    color: black;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

.vert .column.menu ul li.selected:hover {
    color: #000;
}

.vert .column.menuitem {
    flex: none;
    border-right: 1px solid #e9e9e9;
}
.vert .column .header {
    order: 1;
    padding: 5px 8px 3px 8px;
    width: 100%;
    flex: none;
    /*text-align: center;*/
}
.vert .column .content {
    order: 2;
    flex: auto;
    overflow-y: auto;
}
.vert .column ul.content {
    min-width: 12em;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.vert-list {
    border-top: 1px solid #e9e9e9;
    list-style-type: none;
    padding: 0;
    overflow-y: auto;
    height: 100%;
    width: 100%;
}
.vert-item {
    width: 100%;
    border-bottom: 1px solid #e9e9e9;
    padding: 5px;
    padding-left: 15px;
}

.vert-item.last {
    border-bottom: none;
}

.vert-sublist {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: block;
}
.vert-subitem {
    white-space: nowrap;
    padding-right: 8px;
    cursor: pointer;
    position: relative;
}

.rd-days {
    width: 13em;
}
.rd-container {
    border: 1px solid #ccc;
    border-radius: 5px;
}
.padded {
    padding: 15px;
}
.margined {
    margin: 15px;
}
.notch {
    width: 20px;
    height: 20px;
    border-bottom: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    background-color: var(--surface-default);
    transform: translateX(15px) rotate(45deg);
}

/*for attribute view*/
.editable-wrap .editable-controls>input, /*.editable-wrap .editable-controls>select,*/ .editable-wrap .editable-controls>textarea {
    width: 100%;
}

/* for profile view */
.tabular-list {
    padding-left: 0;
    list-style: none;
}

.tabular-list li label {
    width: 150px;
}

.clickable {
    cursor: pointer !important;
}

span.selected {
    font-weight: var(--font-weight-bold);
}

span.highlighted {
    color: #e45400;
}

.highlighted-team {
    /*color: #10A8D0;*/
    color: #5796b5;
}

.vert-item .not-selectable {
    color: #ccc;
    cursor: not-allowed;
    font-weight: var(--font-weight-regular) !important;
}

.vert-item .read-only {
    cursor: not-allowed;
}

span.no-valid-children {
    color: #ccc;
    cursor: not-allowed;
}

.delete-button {
    /*position: absolute;
    right: 15px;
    top: 3px;*/
    /* padding-left:3px;*/
    float: right;
    color: var(--danger);
    display: none;
}

.vert-flat:hover .delete-button,
.vert-subitem:hover .delete-button,
.qr-rule:hover .delete-button,
.deletable:hover .delete-button {
    display: block;
}
