
.sec{
    margin-top: 1rem;
}

.divAcordeon{

    position: relative;

}
.divAcorTop{

    position: relative;

    margin-bottom: 0.2rem;

    border-radius: 0.5rem;
    border:1px solid lightgrey;
    
}
.divAcorHeader{

    position: relative;
    
    padding: 0.5rem;
    
    
}
.divAcorHeader span{

    font-size: 1.1rem;
    font-weight: bold;


}
.divAcorExpander{

    position: absolute;

    top:50%;
    right: 0.5rem;
    transform: translateY(-50%);

    padding: 0.2rem 0.4rem;

    cursor:pointer;
    user-select: none;

    border-radius: 50%;
    border:1px solid gray
    
}
.divAcorExpander span{

    font-weight: bold;
    color:gray;
}
.divAcorExpander:active{
    margin-top:1px;
}




.divContent{

    position: relative;

    max-height: 300rem;    
    padding: 0.5rem;

    border-radius: 0.5rem;
    border:1px solid lightgrey;

    transition: all 0.3s ease;
    overflow: hidden;
}

.contentShrink{

    max-height: 0 !important;
    border: none !important;

}

.divBtnSimple{

    position: relative;
    display: inline-block;
    
    margin-top: 0.5rem;
    padding: 0.5rem 0.6rem;
    
    font-size: 1.0rem;
    background-color: aliceblue;
    border:1px solid #CCC;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 0 5px -1px rgba(0,0,0,0.2);
    user-select: none;
}
.divBtnSimple:active {
    top:1px;
    left:1px;
    color:black;
    box-shadow: none;
}

.divExampleBtn {
    display:inline-block;
    color:#444;
    border:1px solid #CCC;
    background:#DDD;
    box-shadow: 0 0 5px -1px rgba(0,0,0,0.2);
    cursor:pointer;
    vertical-align:middle;
    max-width: 100px;
    padding: 5px;
    text-align: center;
}
.divExampleBtn:active {
    color:red;
    box-shadow: 0 0 5px -1px rgba(0,0,0,0.6);
}

.divConsole{
    
    position: relative;
    
    width: 60rem;
    height: 20rem;

    margin-top: 0.5rem;

    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;

    overflow: auto;

    background-color: rgb(240, 240, 240);
    border:1px solid lightgrey;
    border-radius: 0.5rem;


}

.divAssetList{


    position: relative;

    margin-top: 0.5rem;

    border:1px solid gray;

}

.divAssetRow{
    
    position: relative;
    display: flex;
    flex-flow: row nowrap;

}
.divAssetRow:nth-child(2n){
    background-color: rgba(0,0,0,0.1);
}

.divAssetRowElement{

    flex: 1 0 0;
    padding: 0.2rem 0.4rem;

}

.divAssetRowElement span{
    display: inline-block;
    min-height: 1rem;
    padding: 0.1rem;
}

.divAssetRowElement .spText{

    min-width: 5rem;
    border:1px solid lightgrey;
 }

.divAssetRowElement span[data-edited="true"]{

    color:red;
}


.rowHeader span{

    font-weight: bold;
    text-decoration: underline;
}


.divActiveSlots{

    position: relative;
    display: flex;
    flex-flow: row nowrap;

    overflow-x: scroll;
}

.divActiveSlot{

    flex: 0 0 19rem;

   /*  padding: 0.5rem; */
    border:1px solid gray;

}

.divActiveSlot .spHeader{
    
    display: block;
    margin-top: 0.5rem;
    text-align: center;


    font-size: 105%;
    font-weight: bold;
}
.divActiveSlot .spPid{
    display: block;
    text-align: center;
}
.divActiveSlot table{

    margin-top: 0.5rem;
    border-spacing:1rem 0.3rem;
}
.divActiveSlot tr td:first-of-type{
    
    font-weight: normal;    
    
}

.divActiveSlot tr td{

    font-weight: bold;
   
}







.divSettingRow{

    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: end;
   
    
    margin-top: 0.5rem;

    column-gap: 1rem;

    overflow-x: scroll;
    border-top: 1px solid gray;;


}
.divSettingRow:first-of-type{
    margin-top: 0;
    border-top:none;
}

.divSetting{

    flex:1 0 auto;
    padding: 0.5rem;

}
.divSetting span{
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
}
.divSetting span:first-of-type{
    font-weight: normal;
    margin-right: 0.5rem;
}

.spTextBox{

    display: inline-block;    

    padding: 0.2rem 0.5rem;
    border:1px solid gray;
}
.spTextBoxShort{
    min-width: 5rem;
}
.spTextBoxMed{
    min-width: 10rem;
}
.spTextBoxLong{
    min-width: 15rem;
}

