/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------- CSS for Desktop Devices --------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (min-width: 769px) {
    
    .navigation-page-content-container {
        display: flex;
        flex-wrap: wrap;
        align-self: center;
        min-width: 768px !important;
        max-width: 768px !important;
        justify-content: space-evenly;
        align-content: space-evenly;
        min-height: 572px;
        max-height: 572px;
        padding-top: 20px;
    }

            .triangle-number-of-unset-inputs-navigation {
                position: absolute;
                right: 0px;
                bottom: 0px;
                width: 40px;
                aspect-ratio: 1;
                clip-path: polygon(100% 100%,100% 0,0 100%);
                -webkit-clip-path: polygon(100% 100%,100% 0,0 100%);
                background: orange;
                z-index: 10;
            }

                    .number-of-unset-inputs-navigation{
                        /* width: 80%;
                        height: 14px;
                        padding-top: 1px;
                        padding-left: 0px;
                        padding-bottom: 0px;
                        padding-right: 0px;
                        margin-top: 0;
                        margin-left: 0px;
                        margin-bottom: 6px;
                        margin-right: 8px;
                        text-align: right; */
                        color: black;
                        position: absolute;
                        bottom: 4px;
                        right: 8px;
                        margin: 0px;
                    }

            .navigation-c-tile-link {
                position: relative;
                width: 180px;
                height: 180px;
                margin: 4px;
                background-color: aliceblue;
                text-align: center;
                text-decoration: none;
            }

            .navigation-c-tile-link-long {
                width: calc(48% + 4px);
            }

            .navigation-c-tile-link:hover {
                transition: 1s all ease;
                background: #f0e7f2;
                cursor: pointer;
            }

            .navigation-c-tile-container {
                display: flex;
                flex-direction: column;
                justify-content: space-evenly;
                height: 90%;
            }

            .navigation-c-tile-background {
                position: relative;
                width: 100%;
                height: 80%;
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }

            .navigation-p-tile-container {
                position: relative;
                display: flex;
                width: 100%;
                max-width: 480px;
                height: 135px;
                margin-bottom: 25px;
            }

            a.navigation-tile:link {
                color: lightslategray;
                text-decoration-line: none;
            }

            a.navigation-tile:visited {
                color: lightslategray;
                text-decoration-line: none;
            }

                    .navigation-tile-description {
                        color: lightslategray;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis !important;
                        padding-top: 8px;
                    }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------- CSS for Mobile Devices ---------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 768px) and (orientation: portrait) {
    
    .navigation-page-content-container {
        display: flex;
        margin-top: 20px;
        flex-wrap: wrap;
        width: 100%;
        height: calc(100vh - 110px);
        height: calc(100svh - 110px);
        justify-content: space-between;
        align-content: space-between;
    }

            .triangle-number-of-unset-inputs-navigation {
                position: absolute;
                right: 0px;
                bottom: 0px;
                width: 40px;
                aspect-ratio: 1;
                clip-path: polygon(100% 100%,100% 0,0 100%);
                -webkit-clip-path: polygon(100% 100%,100% 0,0 100%);
                background: orange;
                z-index: 10;
            }

                    .number-of-unset-inputs-navigation{
                        /* width: 80%;
                        height: 14px;
                        padding-top: 1px;
                        padding-left: 0px;
                        padding-bottom: 0px;
                        padding-right: 0px;
                        margin-top: 0;
                        margin-left: 0px;
                        margin-bottom: 6px;
                        margin-right: 8px;
                        text-align: right; */
                        color: black;
                        position: absolute;
                        bottom: 4px;
                        right: 8px;
                        margin: 0px;
                    }

            .navigation-c-tile-link {
                position: relative;
                width: calc(50% - 3px);
                min-height: calc(20% - 4px);
                background-color: aliceblue;
                text-align: center;
                text-decoration: none;
            }

            .navigation-c-tile-link:hover {
                transition: 1s all ease;
                background: #f0e7f2;
                cursor: pointer;
            }

            .navigation-c-tile-container {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 100%;
            }

            .navigation-c-tile-background {
                position: relative;
                width: 100%;
                height: 80%;
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }

            .navigation-p-tile-container {
                position: relative;
                display: flex;
                width: 100%;
                max-width: 480px;
                height: 135px;
                margin-bottom: 25px;
            }

            a.navigation-tile:link {
                color: lightslategray;
                text-decoration-line: none;
            }

            a.navigation-tile:visited {
                color: lightslategray;
                text-decoration-line: none;
            }

                    .navigation-tile-description {
                        color: lightslategray;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis !important;
                    }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------- CSS for Mobile Devices ---------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 768px) and (orientation: landscape) {
    
    .navigation-page-content-container {
        display: flex;
        margin-top: 20px;
        flex-wrap: wrap;
        width: 100%;
        min-height: calc(100vh - 110px);
        min-height: calc(100svh - 110px);
        max-height: calc(100vh - 110px);
        max-height: calc(100svh - 110px);
        justify-content: space-between;
        align-content: space-between;
    }

            .triangle-number-of-unset-inputs-navigation {
                position: absolute;
                right: 0px;
                bottom: 0px;
                width: 40px;
                aspect-ratio: 1;
                clip-path: polygon(100% 100%,100% 0,0 100%);
                -webkit-clip-path: polygon(100% 100%,100% 0,0 100%);
                background: orange;
                z-index: 10;
            }

                    .number-of-unset-inputs-navigation{
                        /* width: 80%;
                        height: 14px;
                        padding-top: 1px;
                        padding-left: 0px;
                        padding-bottom: 0px;
                        padding-right: 0px;
                        margin-top: 0;
                        margin-left: 0px;
                        margin-bottom: 6px;
                        margin-right: 8px;
                        text-align: right; */
                        color: black;
                        position: absolute;
                        bottom: 4px;
                        right: 8px;
                        margin: 0px;
                    }

            .navigation-c-tile-link {
                position: relative;
                width: 18%;
                min-height: calc(48vh - 55px);
                min-height: calc(48svh - 55px);
                /*aspect-ratio: 1;*/
                background-color: aliceblue;
                text-align: center;
                text-decoration: none;
            }

            .navigation-c-tile-link:hover {
                transition: 1s all ease;
                background: #f0e7f2;
                cursor: pointer;
            }

            .navigation-c-tile-container {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 100%;
            }

            .navigation-c-tile-background {
                position: relative;
                width: 100%;
                height: 80%;
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }

            .navigation-p-tile-container {
                position: relative;
                display: flex;
                width: 26%;
                height: 160px;
                margin-bottom: 25px;
            }

            a.navigation-tile:link {
                color: lightslategray;
                text-decoration-line: none;
            }

            a.navigation-tile:visited {
                color: lightslategray;
                text-decoration-line: none;
            }

                    .navigation-tile-description {
                        color: lightslategray;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis !important;
                    }

                    .navigation-tile-description-paragraph {
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        padding: 0px 10px;
                    }
}