/*--------------------------------------------------------------
Definition of elements rendered by the page renderer

>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 General
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 General
--------------------------------------------------------------*/

.page-renderer-tab > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.page-renderer-tab > div ul {
    width: 90%
}

.page-renderer-group {
    display: flex;
    margin-bottom: 5px;
    padding: 7px;
    background: white;
    flex-basis: 100%;
}

.page-renderer-label {
    flex: 1;
    font-weight: 500;
    vertical-align: top;
    text-align: right;
    padding-top: 2px;
    padding-left: 10px;
    color: #777;
    padding-right: 5px;
    min-height: 20px;
    box-sizing: border-box;
}

.page-renderer-text {
    flex: 3;
    display: inline-block;
    box-sizing: border-box;
    width: 300px;
    vertical-align: bottom;
    padding: 1px 12px;
    border-radius: 5px;
    min-height: 20px;
    margin-bottom: 1px;
    text-align: left;
}

.page-renderer-tab-label {
    display: block;
    font-weight: bold;
    font-size: 1.1em;
    color: #000;
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
}