.Box.BoxContainer {
    position: absolute;
    display: block;
    -webkit-box-shadow: 0px 0px 50px -20px rgba(0,0,0,0.77);
    box-shadow: 0px 0px 50px -20px rgba(0,0,0,0.77);
    right: 0px;
}

.BoxHeader{
    background-color: #e30613;
    padding: 0px 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.Box {
    z-index: 15;

}
.Box.BoxHeaderText{
    line-height: 18px;
    font-size: 14px;
    padding: 10px 0px;
    display: inline-block;
    color: white;
    position: relative;
    overflow: hidden;
}
.Box.BoxHeaderImage{
    color: white;
    margin: 7px 10px 7px 0px;
    vertical-align: middle;
}
.Box.BoxHeaderActions{
    position: relative;
    display: inline-block;
    float: right;
    padding-top:5px;
}
.BoxHeaderAction{
    width: 24px;
    height:24px;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    vertical-align: middle;
    align-content: center;
    padding: 0;
}
.BoxHeaderAction:hover{
    border: 2px solid rgba(255,255,255,0.3) !important;
}
.Box.BoxContent{
    min-height:50px;

    overflow-y: scroll;
    overflow-x: scroll;
    background-color: rgba(255,255,255, 0.98);
    padding: 5px;
    /*TODO: Resize header*/
}
.full_height{
    height: calc(100% - 56px);
}