
/* shortcuts-section
-------------------------------------------------------------- */
.shortcuts-section {
    width: 100%;
    margin: 30px auto 40px;
    transition: width .5s;
}
    @media (min-width: 576px) {
        .shortcuts-section {
            width: 530px;
        }
    }
    @media (min-width: 768px) {
        .shortcuts-section {
            margin-top: 60px;
            width: 750px;
        }
    }
    @media (min-width: 992px) {
        .shortcuts-section {
            width: 950px;
        }
    }
    @media (min-width: 1200px) {
        .shortcuts-section {
            width: 1000px;
        }
    }

    .shortcuts-section .box-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
        align-content: flex-start;
        justify-content: center;
        row-gap: 20px;
        padding: 10px;
    }
        .shortcuts-section .box {
            padding: 0 25px;
            width: calc(100% / 2.001);
        }
        @media (min-width: 768px) {
            .shortcuts-section .box-1-4 {
                width: calc(100% / 4.001) !important;
            }
        }
            .shortcuts-section .box .content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                text-align: center;
                
                color: var(--department-color-3);
                
                cursor: pointer;
                margin: 0 auto;
                padding: 30px 10px;
                width: 100%;
                border: 1px solid var(--department-color-2);
                border-radius: 10px;
                box-shadow: 0px 0px 24px -10px var(--department-color-3);
                transition: all .2s;
            }
            .shortcuts-section .box .content.inactive {
                cursor: default;
                color: #aaa;
                border: 1px solid #aaa;;
                box-shadow: 0px 0px 24px -10px #aaa;;
            }
            @media (min-width: 576px) {
                .shortcuts-section .box .content:not(.inactive):hover,
                .shortcuts-section .box .content:not(.inactive):active {
                    border: 1px solid var(--department-color-3);
                    border-radius: 20%;
                    background-color: #fcfcfc;
                }
                .shortcuts-section .box .content:not(.inactive):hover .icon,
                .shortcuts-section .box .content:not(.inactive):active .icon {
                    font-size: 48px;
                    transform: translate(7px, -9px);
                    transition: all .2s;
                }
            }
                .shortcuts-section .box .content .icon {
                    margin-bottom: 5px;
                    font-size: 40px;
                    height: 60px;
                }
                .shortcuts-section .box .content .title {
                    font-family: 'Silka-Light', sans-serif;
                    font-size: .8rem;
                }





.shortcuts-section .box[expanded] {
    padding: 0 !important;
    padding-right: 5px !important;
    width: 110px !important;
}
    @media (min-width: 768px) {
        .shortcuts-section .box[expanded] {
            width: 140px !important;
        }
    }
    .shortcuts-section .box[expanded] a {
        cursor: default !important;
    }
        .shortcuts-section .box[expanded] .content {
            box-shadow: none;
            pointer-events: none;
            opacity: .3;
        }
    
.shortcuts-section .box[sc-menu] {
    padding: 0 !important;
    width: calc(100% - 110px);
}
@media (min-width: 768px) {
    .shortcuts-section .box[sc-menu] {
        width: calc(100% / 2.001);
    }
}   
    .shortcuts-section .box .content-menu {            
        color: var(--department-color-3);        
        padding: 5px;
        border: 1px solid var(--department-color-2);
        border-radius: 3px;
        box-shadow: 0px 0px 24px -10px var(--department-color-3);
    }
        .shortcuts-section .box .content-menu .navi {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: flex-start;
            align-content: flex-start;
            padding-top: 5px;
        }
            .shortcuts-section .box .content-menu .navi .prev,
            .shortcuts-section .box .content-menu .navi .close {
                cursor: pointer;
            }
            .shortcuts-section .box .content-menu .navi .prev:before {
                content: "\f104";
                font-family: 'Font Awesome 6 Free', sans-serif;
                padding-left: 9px;
            }
            .shortcuts-section .box .content-menu .navi .close:before {
                content: "\1f5d9";
                font-family: 'Font Awesome 6 Free', sans-serif;
                padding-right: 9px;
            }
            .shortcuts-section .box .content-menu .navi .title {
                font-size: .9rem;
                text-align: center;
                padding: 0 10px;
                cursor: default;
            }
        .shortcuts-section .box .content-menu .items {
            font-size: 12px;
        }
            .shortcuts-section .box .content-menu .items ul {
                list-style-type: none;
                padding: 0;
                margin: 5px 0 0 0;
            }
                .shortcuts-section .box .content-menu .items ul li {
                    padding: 8px 0 0 10px;
                }
                @media (min-width: 576px) {
                    .shortcuts-section .box .content-menu .items ul li {
                        font-size: .9rem;
                    }
                }   
                    .shortcuts-section .box .content-menu .items ul li a.disabled:before {
                        content: "\f084";
                        font-size: 75%;
                        vertical-align: 10%;
                        opacity: .6;
                        cursor: default;
                        font-family: 'Font Awesome 6 Free', sans-serif;
                        padding-right: 7px;
                    }
                    .shortcuts-section .box .content-menu .items ul li a:not([href]):after {
                        content: "\f105";
                        font-size: 70%;
                        vertical-align: 10%;
                        font-family: 'Font Awesome 6 Free', sans-serif;
                        padding-left: 9px;
                    }
