/* 1 - General  */

/* 1.1 - Section Wrappers */

.section {
    container-type: inline-size;
}

/* 1.2 - Responsive Hide/Show */

/* 1.2.1 - Desktop Show/Mobile Hide */
.ds_mh {
    display: block;
}

/* 1.2.2 - Mobile Show/Desktop Hide */
.ms_dh {
    display: none;
}

/* 1.2.3 - Padding - Responsive Width Override */
/* 1.2.4 - Margin - Responsive Width Override */

/* 1.3 - Hover States */

/* !//////// !DISUKO v0.2! ////////! */

/* 2- Generic Layout */
.block {}


.block_50 {
    width: 50%;
}

.block_75 {
    width: 75%;
}

.block_80 {
    width: 80%;
}

.block--center {
    margin: auto;
}



/* 2 - Flex Layout  */


/* 2.1 - Flex Objects  */

.flex {
    /* flex is the Block level flex parent item */
}

.flex__item {
    /* flex_item is the Block level flex child item */
}

/* 2.2 - Flex Flow & Direction */
.flex_row {
    display: flex;
    flex-direction: row;
}

.flex_col {
    display: flex;
    flex-direction: column;
}

.flex_wrap {
    display: flex;
    flex-wrap: wrap;
}

/* 2.3 - Flex Content Justify (Item's X axis posistion) */
.flex_hoz--center {
    align-items: center;
}

.flex_hoz--right {
    align-items: flex-end;
}

.flex_hoz--left {
    align-items: flex-start;
}

/* 2.4 - Flex Content Align (Item's axis posistion) */
.flex_ver--center {
    justify-content: center;
}

.flex_ver--start {
    justify-content: flex-start;
}

.flex_ver--end {
    justify-content: flex-end;
}

.flex_ver--between {
    justify-content: space-between;
}

.flex_ver--around {
    justify-content: space-around;
}

.flex_ver--even {
    justify-content: space-evenly;
}


/* 2.5 - Flex Item Posistioning TODO - Test */
.flex_item--start {
    align-self: flex-start;
}

.flex_item--end {
    align-self: flex-end;
}

.flex_item--cent {
    align-self: center;
}


/* 2.6 - Flex Item Size */
.flex_item100 {
    flex: 100%;
}

.flex_item90 {
    flex: 90%;
}

.flex_item80 {
    flex: 80%;
}

.flex_item70 {
    flex: 70%;
}

.flex_item60 {
    flex: 60%;
}

.flex_item50 {
    flex: 50%;
}

.flex_item40 {
    flex: 40%;
}

.flex_item30 {
    flex: 30%;
}

.flex_item20 {
    flex: 20%;
}

.flex_item10 {
    flex: 10%;
}

/* !//////// !DISUKO v0.2! ////////! */


/* 3 - Typography */
.font {
    /* 
    .font is the general Block level selector for font items
    Font Size, Weight, & Color are abbreviated with .fs, .fw. & .fc 
    Line Height & Letter Spacing are done with .lh & .ls 
    */
}

/* 3.1 - Font Family */
.font_oswald {
    font-family: Oswald, 'Lucida Grande', sans-serif;
}


/* 3.2 - Font Style */

/* Italic */
.font_ital {
    font-style: italic;
}

/* Underline */
.font_under {
    text-decoration: underline;
}

/* None */
.font_none {
    text-decoration: none;
}

/* Uppercase */
.font_up {
    text-transform: uppercase;
}

/* Capitalise */
.font_cap {
    text-transform: capitalize;
}

/* Align Center */
.font_cent {
    text-align: center;
}

/* Align Left */
.font_left {
    text-align: center;
}

/* Align Right */
.font_right {
    text-align: right;
}

/* 3.3 - Font Size */
.fs_0_5 {
    font-size: .5rem;
}

.fs_0_8 {
    font-size: .8rem;
}

.fs_1 {
    font-size: 1rem;
}

.fs_1_3 {
    font-size: 1.3rem;
}

.fs_1_5 {
    font-size: 1.5rem;
}

.fs_1_8 {
    font-size: 1.8rem;
}

.fs_2 {
    font-size: 2rem;
}

.fs_2_2 {
    font-size: 2.2rem;
}

.fs_2_3 {
    font-size: 2.3rem;
}

.fs_2_5 {
    font-size: 2.5rem;
}

.fs_3 {
    font-size: 3rem;
}

.fs_3_5 {
    font-size: 3.5rem;
}

.fs_4 {
    font-size: 4rem;
}

.fs_4_5 {
    font-size: 4.5rem;
}

.fs_5 {
    font-size: 5rem;
}

/* 3.4 - Font Weight */
.fw_300 {
    font-weight: 300;
}

.fw_500 {
    font-weight: 500;
}

.fw_600 {
    font-weight: 600;
}

.fw_700 {
    font-weight: 700;
}

.fw_900 {
    font-weight: 900;
}

/* 3.5 - Font Colours */
.fc_blk {
    color: #000;
}

.fc_wht {
    color: #fff;
}

.fc_gry {
    color: #333;
}

/* 3.6 - Line Height */
.lh_1_1 {
    line-height: 1.1;
}

.lh_1_2 {
    line-height: 1.2;
}

.lh_1_3 {
    line-height: 1.3;
}

.lh_1_4 {
    line-height: 1.4;
}

.lh_1_5 {
    line-height: 1.5;
}

/* 3.7 - Letter Spacing */
.ls_03 {
    letter-spacing: 0.03rem;
}

.ls_04 {
    letter-spacing: 0.04rem;
}

.ls_05 {
    letter-spacing: 0.05rem;
}

.ls_06 {
    letter-spacing: 0.06rem;
}

.ls_07 {
    letter-spacing: 0.07rem;
}

.ls_08 {
    letter-spacing: 0.08rem;
}

/* !//////// !DISUKO v0.2! ////////! */


/* 4 - Object Spacing  */
/* This is the spacing basis to use across all elements, unless otherwise specified by the element */
/* Comments spell out the abbreviation as needed, followed by the number of units of space */


/* 4.1 - Margin  */

/* 4.1.1 - Margin Axis */
/* Margin Auto (Left & Right)*/
.ma {
    margin-left: auto;
    margin-right: auto;
}

/* Margin Horizontal */
.mh0 {
    margin-left: 0;
    margin-right: 0;
}

.mh1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mh2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mh3 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mh4 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.mh5 {
    margin-left: 5rem;
    margin-right: 5rem;
}

/* Margin Vertical */
.mv0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mv1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mv1_5 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.mv2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mv3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mv4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.mv5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

/* 4.1.2 - Margin Single */
/* Margin Top */
.mt0 {
    margin-top: 0;
}

.mt1 {
    margin-top: 1rem;
}

.mt1_5 {
    margin-top: 1.5rem;
}

.mt2 {
    margin-top: 2rem;
}

.mt3 {
    margin-top: 3rem;
}

.mt4 {
    margin-top: 4rem;
}

.mt5 {
    margin-top: 5rem;
}

/* Margin Bottom */
.mb0 {
    margin-bottom: 0;
}

.mb0_5 {
    margin-bottom: 0.5rem;
}

.mb1 {
    margin-bottom: 1rem;
}

.mb2 {
    margin-bottom: 2rem;
}

.mb3 {
    margin-bottom: 3rem;
}

.mb4 {
    margin-bottom: 4rem;
}

.mb5 {
    margin-bottom: 5rem;
}


/* Margin Left */
.ml0 {
    margin-left: 0;
}

.ml1 {
    margin-left: 1rem;
}

.ml2 {
    margin-left: 2rem;
}

.ml3 {
    margin-left: 3rem;
}

.ml4 {
    margin-left: 4rem;
}

.ml5 {
    margin-left: 5rem;
}

/* Margin Right */
.mr0 {
    margin-right: 0;
}

.mr1 {
    margin-right: 1rem;
}

.mr2 {
    margin-right: 2rem;
}

.mr3 {
    margin-right: 3rem;
}

.mr4 {
    margin-right: 4rem;
}

.mr5 {
    margin-right: 5rem;
}

/* 4.2 - Padding */
/* 4.2 - Padding Axis*/
/* Padding Horizontal */
.ph0 {
    padding-left: 0;
    padding-right: 0;
}

.ph1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.ph2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.ph3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.ph4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.ph5 {
    padding-left: 5rem;
    padding-right: 5rem;
}


/* Padding Vertical */
.pv0 {
    padding-top: 0;
    padding-bottom: 0;
}

.pv1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pv1_5 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.pv2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.pv3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pv4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pv5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}


/* 4.2 - Padding Single*/
/* Padding Top */
.pt0 {
    padding-top: 0;
}

.pt1 {
    padding-top: 1rem;
}

.pt1_5 {
    padding-top: 1.5rem;
}

.pt2 {
    padding-top: 2rem;
}

.pt3 {
    padding-top: 3rem;
}

.pt4 {
    padding-top: 4rem;
}

.pt5 {
    padding-top: 5rem;
}

/* Padding Bottom */
.pb0 {
    padding-bottom: 0;
}

.pb0_5 {
    padding-bottom: 0.5rem;
}

.pb1 {
    padding-bottom: 1rem;
}

.pb1_5 {
    padding-bottom: 1.5rem;
}

.pb2 {
    padding-bottom: 2rem;
}

.pb3 {
    padding-bottom: 3rem;
}

.pb4 {
    padding-bottom: 4rem;
}

.pb5 {
    padding-bottom: 5rem;
}

/* Padding Left */
.pl0 {
    padding-left: 0;
}

.pl1 {
    padding-left: 1rem;
}

.pl2 {
    padding-left: 2rem;
}

.pl3 {
    padding-left: 3rem;
}

.pl4 {
    padding-left: 4rem;
}

.pl5 {
    padding-left: 5rem;
}

/* Padding Right */
.pr0 {
    padding-right: 0;
}

.pr1 {
    padding-right: 1rem;
}

.pr2 {
    padding-right: 2rem;
}

.pr3 {
    padding-right: 3rem;
}

.pr4 {
    padding-right: 4rem;
}

.pr5 {
    padding-right: 5rem;
}





/* !//////// !DISUKO v0.2! ////////! */

/* 5 - Object Styling  */

/* 5.1 - Borders  */
.brd__top--wht {
    border-top-color: #fff;
    border-top-style: solid;
}

.brd__btm--wht {
    border-bottom-color: #fff;
    border-bottom-style: solid;
}

.brd__width_10 {
    border-width: 10px;
}



/* 5.2 - Background */
/* 5.3 - Opacity */
/* 5.4 - Shadow  */


/* !//////// !DISUKO v0.2! ////////! */

/* 6 - Button & Links */
.but {
    a {
        cursor: pointer;
        transition-duration: 0.3s;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }
}

/* 6.1.1 - Button Layout  */
.but--cent {
    text-align: center;
}

.but--left {
    text-align: left;
}

.but--right {
    text-align: right;
}

/* 6.1.2 - Button Width */
.but--100 {
    a {
        width: 100%;
    }
}

.but--75 {
    a {
        min-width: 75%;
    }
}

.but--50 {
    a {
        min-width: 50%;
    }
}

.but--25 {
    a {
        min-width: 25%;
    }
}

/* 6.1.2\3 - Button Color & Hover */
.but--blk {

    a {
        /* Default Button Spacing */
        padding: 0.5rem 2rem;
        font-size: 1rem;
        /* Default Button Spacing */

        border-radius: 0.3rem;
        text-transform: uppercase;
        background-color: #000;
        border: 1px solid #000;
        color: #fff;

        &:hover,
        &:active {
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #000;
            color: #000;
        }
    }
}

.but--wht {
    a {
        background-color: #fff;
        border: 1px solid #000;
        color: #000;

        &:hover,
        &:active {
            text-decoration: none;
            background-color: #000;
            border: 1px solid #000;
            color: #fff;
        }
    }
}

.but--prp {
    a {
        background-color: #504ca0;
        border: 1px solid #504ca0;
        color: #fff;

        &:hover,
        &:active {
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #504ca0;
            color: #504ca0;
        }
    }
}

/* 6.2 - Links */
.link {}

/* 6.2.1 - Inline Links */
.link--inline {
    text-decoration: none;

    &:hover {
        /* text-decoration: none; */
        transition-duration: 0.3s;
        color: #4b1e78;
    }
}

.link--underline {
    text-decoration: underline;
}

.link--default {

    &:hover {
        transition-duration: 0.3s;
        color: #4b1e78;
    }
}

/* !//////// !DISUKO v0.2! ////////! */

/* 7 - Components  */

/* 7.1 - Banners */


.banner {
    /* position: relative; */
}

.banner--height50 {
    height: 50vh;
}

.banner--height60 {
    height: 60vh;
}

.banner--height80 {
    height: 80vh;
}

/* 7.1.1 - Full Width Image Banner */

/* Banner Image - requires the following, inline, for G-Web
    #d?????? {
        background-image: url("@@tcm:138-???????");
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
*/

.banner__img {
    position: relative;

    .banner__content {}
}

/* 7.1.2 - Full Width Video Banner */

/* Banner Video - requires the following, inline, for G-Web
     #d??????? {
        padding: 0;

        .l-inner {
            max-width: 100%;
        }
    }
*/

.banner__vid {
    position: relative;
    overflow: hidden;

    video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .banner__vid--content {
        position: absolute;
    }

}

/* 7.1.3 - Parallax Banner TODO - Include Safari fix*/


/* 7.1.4 - Content Wide Image */


/* 7.1.5 - Content Wide Image */

.banner--link {
    cursor: pointer;
    transition-duration: 0.3s;
}

/* Image Invert */
.banner--link__invert {
    &:hover {
        -webkit-filter: invert(75%);
        -moz-filter: invert(75%);
        filter: invert(75%);
    }
}


/* 7.2 - Tables */
.tab {
    table {
        width: 100%;

        td,
        th {
            padding: .4rem;
            /* padding-top: .3em;
            padding-bottom: .3em; */
        }
    }
}

/* 7.2.1 - Table Styles */
.tab--dotted {
    tr {
        border-bottom: dotted 2px #000;
    }

    tr:nth-child(1) {
        border-bottom: solid 4px #000;
    }
}

.tab--alt {
    tr:nth-child(2n) {
        background-color: #d6d6d6;
    }
}

.tab_heading--bold {}

/* 7.2.2 - Table Borders */
.tab--border_dark {

    td,
    th {
        border: 1px solid #333;
    }
}

/* 7.2.3 - Table Column Widths */
.tab--50_50 {
    td:nth-child(1) {
        width: 50%;
    }

    td:nth-child(2n) {
        width: 50%;
    }
}

.tab--30_70 {
    td:nth-child(1) {
        width: 30%;
    }

    td:nth-child(2n) {
        width: 70%;
    }
}

.tab--70_30 {
    td:nth-child(1) {
        width: 70%;
    }

    td:nth-child(2n) {
        width: 30%;
    }
}

/* 7.3 - Lists */
.list {

    ol,
    ul {
        list-style: revert-layer !important;
    }

    li {
        margin-bottom: 0.5rem;
    }
}

.list--ul_dot {}

.list--ol_num {}

.list--ol_roman {}

.list--left_align {
    ol {
        padding-left: 0;
    }

    li {
        padding-left: 0.5rem;
    }

}


.list--li_bold {
    li::marker {
        font-weight: bold;
    }
}

.list--li_ital {
    li::marker {
        font-style: italic;
    }
}





/* 7.4 - Images */

/* 7.4 - Content Wide Image */
.img_100 {
    img {
        width: 100%;
    }
}


/* !//////// !DISUKO v0.2! ////////! */


/* @media only screen and (max-width: 769px) {} */

@container (max-width: 999px) {

    /* 1 - General  */
    /* 1.2 - Responsive Hide/Show */

    /* 1.2.3 - Padding - Responsive Width Override */
    .ph_clear {
        padding-left: 0;
        padding-right: 0;
    }

    /* 1.2.4 - Margin - Responsive Width Override */
    .mh_clear {
        margin-left: 0;
        margin-right: 0;
    }

    /* 1.2.1 - Desktop Show/Mobile Hide */
    .ds_mh {
        display: none;
    }

    /* 1.2.2 - Mobile Show/Desktop Hide */
    .ms_dh {
        display: block;
    }


    /* 2- Generic Layout */
    .block {}

    .block--center {
        margin-left: auto;
        margin-right: auto;
    }

    .block_50,
    .block_75,
    .block_80 {
        width: 100%;
    }

    /* 2 - Flex Layout  */
    /* 2.1 - Flex Objects  */
    /* 2.2 - Flex Flow & Direction */
    .flex_row {
        flex-direction: column;
    }

    /* 2.6 - Flex Item Size */
    .flex_item50 {
        width: 100%;
    }



    /* 3 - Typography */

    /* 3.3 - Font Size */
    .fs_0_5 {
        font-size: .5rem;
    }

    .fs_0_8 {
        font-size: .8rem;
    }

    .fs_1 {
        font-size: 1rem;
    }

    .fs_1_3 {
        font-size: 1.3rem;
    }

    .fs_1_5 {
        font-size: 1.5rem;
    }

    .fs_1_8 {
        font-size: 1.8rem;
    }

    .fs_2 {
        font-size: 1.4rem;
    }

    .fs_2_2 {
        font-size: 2.2rem;
    }

    .fs_2_5 {
        font-size: 2.5rem;
    }

    .fs_3 {
        font-size: 1.5rem;
    }

    .fs_3_5 {
        font-size: 3.5rem;
    }

    .fs_4 {
        font-size: 4rem;
    }

    .fs_4_5 {
        font-size: 3rem;
    }

    .fs_5 {
        font-size: 5rem;
    }

    /* 4 - Object Spacing  */

    /* 4.1 - Margin  */

    /* 4.1.1 - Margin Axis */

    /* Margin Horizontal */
    .mv5 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }


    /* 6 - Button & Links */
    /* 6.1 - Buttons */


    /* 6.1.1 - Button Layout */

    /* 6.1.2 - Button Width */
    /* .but--75 {
        a {
            width: 100%;
        }
    }

    .but--50 {
        a {
            width: 100%;
        }
    }

    .but--25 {
        a {
            width: 100%;
        }
    } */

    /* 6.1.3 - Button Color & Hover */



    /* 6.2 - Links */
    /* 6.2.1 - Inline Link */

    /* 7 - Components  */

    /* 7.1 - Banners */


    .banner {
        /* position: relative; */
    }

    .banner--height50 {
        height: 30vh;
    }

    .banner--height60 {
        height: 40vh;
    }

    .banner--height80 {
        height: 50vh;
    }

    /* 7.3 - Lists */
    .list {
        ol {
            padding-left: 0;
        }
    }
}