/* Inactive section styling */
section.active article {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100% - 43px);
    color: var(--hdr_txt);
    background-color: var(--tbl_bkgr);
    font-size: 1rem;
    border-collapse: collapse;
    border-radius: 8px;
    box-shadow: 3px 4px 6px 0px rgba(0, 0, 0, 0.2);
}

section:not(.active) article {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100% - 43px);
    color: var(--hdr_txt);
    background-color: var(--tbl_bkgr);
    font-size: 1rem;
    border-collapse: collapse;
    border-radius: 8px;
    box-shadow: none;
    opacity: 0.6;
}

section.active header.box_left section.active header.box_right {
    visibility: visible;
}

section:not(.active) header .box_left,
section:not(.active) header .box_right {
    visibility: hidden;
}

section fieldset[disabled] {
    pointer-events: none;
    /* Visually disabled */
    cursor: not-allowed;
}

section#mst wcomp-icn#back{    
    display: none;
}