/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Feb 13, 2024, 2:47:45 PM
    Author     : rcura
*/

:root {
    --xrc-layout-page--height-header: var(--xrc-swap-layout-page--height-header);
    --xrc-layout-page--height-control: var(--xrc-swap-layout-page--height-control);
    --xrc-layout-page--height-main: var(--xrc-swap-layout-page--height-main);
    --xrc-layout-page--height-footer: var(--xrc-swap-layout-page--height-footer);
    
    --xrc-layout-width--full: 100%;
    --xrc-layout-height-full: 100%;
    
    --xrc-layout-page--width-default: var(--xrc-swap-layout-page--width-default);
    
    --xrc-layout-content--height-above: var(--xrc-swap-layout-content--height-above);
    --xrc-layout-content--height-center: var(--xrc-swap-layout-content--height-center);
    --xrc-layout-content--height-below: var(--xrc-swap-layout-content--height-below);
    

    --xrc-layout-sidebar-left--width: var(--xrc-swap-layout-sidebar-left--width);
    --xrc-layout-content-area--width: var(--xrc-swap-layout-content-area--width);
    --xrc-layout-sidebar-right--width: var(--xrc-swap-layout-sidebar-right--width);
}

:root {
    --xrc-layout-header-scale--xsmall: 0.50;
    --xrc-layout-header-scale--small: 0.75;
    --xrc-layout-header-scale--medium: 0.95;
    --xrc-layout-header-scale--large: 1.0;
    --xrc-layout-header-scale--xlarge: 1.15;
}

/*************************************************************************** *
 *
 * RESPONSIVE LAYOUT SIZING                    
 *
 *************************************************************************** */
/* XRC MOD: KNOWN AS SIZE: XSMALL */
@media(min-width:31.25rem) {
    :root {
        --xrc-layout-page--height-header: calc(var(--xrc-swap-layout-page--height-header) * var(--xrc-layout-header-scale--xsmall));
    }
}

/* XRC MOD: KNOWN AS SIZE: SMALL */
@media(min-width:43.75rem) {
    :root {
        --xrc-layout-page--height-header: calc(var(--xrc-swap-layout-page--height-header) * var(--xrc-layout-header-scale--small));
    }
}

/* XRC MOD: KNOWN AS SIZE: MEDIUM */
@media(min-width:62.5rem) {
    :root {
        --xrc-layout-page--height-header: calc(var(--xrc-swap-layout-page--height-header) * var(--xrc-layout-header-scale--medium));
    }
}

/* XRC MOD: KNOWN AS SIZE: LARGE */
@media(min-width:75rem) {
    :root {
        --xrc-layout-page--height-header: calc(var(--xrc-swap-layout-page--height-header) * var(--xrc-layout-header-scale--large));
    }
}

/* XRC MOD: KNOWN AS SIZE: XLARGE */
@media(min-width:90rem) {
    :root {
        --xrc-layout-page--height-header: calc(var(--xrc-swap-layout-page--height-header) * var(--xrc-layout-header-scale--xlarge));
    }
}