/* ---------------------------------------- Formatting for Text and CMS Objects ----------------------------------------  */


/* -------------------- Generic -------------------- */

.hidden{
    display: none;
}
.square{
    border-radius: 0;
}
.roundedEdgesLite{
    border-radius: 5px;
}
.roundedEdgesHeavy{
    border-bottom: 50px;
}


/* -------------------- Text -------------------- */


/* ---------- CK Editor 5 ---------- */
/* Styles should be prefixed with the `.ck-content` class.
See https://github.com/ckeditor/ckeditor5/issues/6636 */
.text-tiny {
    font-size: .7em;
}

.text-small {
    font-size: .85em;
}

.text-big {
    font-size: 1.4em;
}

.text-huge {
    font-size: 1.8em;
    /* color: green; */
}




/* ---------- Text Color Schemes ---------- */

.textColorPri{
    color: var(--primary);
}
.textColorSec{
    color: var(--secondary);
}
.textColorTer{
    color: var(--tertiary);
}
.textColorAcc{
    color: var(--accent);
}
.textColorWhi{
    color: white;
}
.textColorBla{
    color: black;
}
.textColorGra{
    color: gray;
}
.textColorRed{
    color: red;
}
.textColorAlt{
    color: var(--alternate);
}


/* ---------- Text Alignment ---------- */

.textAlignCen{
    text-align: center;
}
.textAlignLef{
    text-align: left;
}
.textAlignRig{
    text-align: left;
}

/* ---------- Text Weight ---------- */

.textWeightLight{
    font-weight: 200;
}
.textWeightMedium{
    font-weight: 599;
}
.textWeightBold{
    font-weight: 800;
}
.textWeightVeryBold{
    font-weight: 999;
}


/* ---------- Special Text Styling ---------- */

.textDecorationNone{
    text-decoration: none;
}
.userSelectNone{
    user-select: none;
}
.listStyleNone{
    list-style: none;
}




/* -------------------- Objects -------------------- */


/* ---------- Align objects w/in flexbox row ---------- */

.alignObjLef{
    display: flex;
    justify-content: start;
    width: 100%;
}
.alignObjLCen{
    display: flex;
    justify-content: center;
    width: 100%;
}
.alignObjRig{
    display: flex;
    align-items: end;
    width: 100%;
}
.alignObjVertCenter{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.alignItemsCenter{
    align-items: center;
}
.alignItemsStart{
    align-items: flex-start;
}
.justifyContentCenter{
    justify-content: center;
}
.justifyContentStart{
    justify-content: flex-start;
}
.justifyContentSpaceBetween{
    justify-content: space-between;
}
.justifyContentSpaceEvenly{
    justify-content: space-evenly;
}
.justifyContentEnd{
    justify-content: flex-end;
}
.flexDirectionRowReverse{
    flex-direction: row-reverse;
}
.flexDirectionRow{
    flex-direction: row;
}

.marginAuto{
    margin: auto;
}
.paddingLight{
    padding: 2px;
}
.noPadding{
    padding: 0;
}
.noPaddingHoriz{
    padding-left: 0;
    padding-right: 0;
}
.noMargin{
    margin: 0;
}
.noMarginHoriz{
    margin-left: 0;
    margin-right: 0;
}
.noFlexWrap{
    flex-wrap: nowrap;
}
.flexWrap{
    flex-wrap: wrap;
}
.noHover{
    pointer-events: none;
}
.Yscroll{
    overflow-y: scroll;
}
.Xscroll{
    overflow-x: scroll;
}
.vertBinFull{
    height: 100%;
}
.horizBinFull{
    width: 100%;
}

.objectWidthFull{
    width: 100%;
    max-width: 100%;
}
.objectWidth90{
    width: 90%;
    max-width: 90%;
}
.objectWidth80{
    width: 80%;
    max-width: 80%;
}
.objectHeightFull{
    height: 100%;
}
.objectVertFitContent{
    height: fit-content;
}
.positionBottom{
    margin-top: auto;
}
.positionTop{
    margin-bottom: auto;
}



/* -------------------- Box Shadow -------------------- */

/* ----- Standard Box Shadows ----- */
.boxShadowLiteCenter{
    box-shadow: 0 0 10px -2px gray;
}
.boxShadowLiteCenterGra{
    box-shadow: 0 0 10px -2px gray;
}
.boxShadowLiteTopLeft{
    box-shadow: -2px -2px 10px -2px gray;
}
.boxShadowLiteTopRight{
    box-shadow: 2px -2px 10px -2px gray;
}
.boxShadowLiteBottomRight{
    box-shadow: 2px 2px 10px -2px gray;
}
.boxShadowLiteBottomLeft{
    box-shadow: -2px 2px 10px -2px gray;
}
.boxShadowLiteCenter_Dark{

    box-shadow: 0 0 10px -2px white;

}
.boxShadowMediumCenter{
    box-shadow: 0 0 10px 2px gray;
}
.boxShadowLift{
    box-shadow: 0 0 10px 0 black;
}
.boxShadowLift:hover{
    box-shadow: 0 0 10px -5px black;
}

/* ----- CMS Object Box Shadow ----- */
.cms_obj_BoxShadow_NO{
    box-shadow: none;
}
.cms_obj_BoxShadow_GR{
    box-shadow: 0 0 10px -2px gray;
}
.cms_obj_BoxShadow_BL{
    box-shadow: 0 0 10px -2px black;
    /* box-shadow: 0 0 20px 5px black; */
}
.cms_obj_BoxShadow_WH{
    box-shadow: 0 0 10px -2px white;
}





