body{
    margin: 0;
    padding: 0;
}

#twgt-content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

.twgt-content-layout {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    overflow: hidden;
}

.twgt-node-wrapper{
    display: flex;
    flex-direction: column;
}

.twgt-node-content {
    flex-grow: 1;
    position: relative;
    box-sizing: border-box;
}

.twgt-node-main {
    overflow: auto;
    flex-grow: 1 !important;
    max-height: 100%;
}

.twgt-node-header {
    flex-shrink: 0 !important;
}

.twgt-node-left-sidebar {
    flex-shrink: 0 !important;
}

.twgt-node-video {
    aspect-ratio: 16 / 9;
}

.twgt-node-button {
    display: flex !important;
}

.twgt-icon-svg{
    display: flex;
}

.twgt-text {
    margin: 0;
    padding: 0;
}

.twgt-node-radio{
    display: flex;
    align-items: center;
    column-gap: 10px;

    input {
        margin: 0;
    }
}

.twgt-node-navigation{}

.twgt-navigation-item-wrapper{
    position: relative;
}

.twgt-navigation-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
    cursor: pointer;
    column-gap: 10px;
    box-sizing: border-box;
}

.twgt-navigation-item-wrapper a{
    text-decoration: none;
    color: inherit;
}

.twgt-navigation-label{
    display: flex;
    align-items: center;
}

.twgt-navigation-icon {
    margin-right: 10px;
    display: flex;
}

.twgt-navigation-dropdown {
    position: absolute;
    background-color: white;
    width: 200px;
    border-radius: 5px;
    z-index: 9;
    -webkit-box-shadow: 0 2px 4px rgba(123, 123, 123, .5);
    -moz-box-shadow: 0 2px 4px rgba(123, 123, 123, .5);
    box-shadow: 0 2px 4px rgba(123, 123, 123, .5);
}

.twgt-node-modal {
    z-index: 15;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .32);
    padding: 10px;
}

.twgt-node-drawer {
    z-index: 15;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    background: rgba(0, 0, 0, .32);
}