﻿@media (max-width: 576px) {
    .page-container .page-head {
        height: 100px !important;
    }

        .page-container .page-head h2 {
            font-size: 1.4rem !important;
        }

        .page-container .page-head p {
            font-size: 0.7rem !important;
        }

    .page-container.fixed-banner {
        height: calc(100vh - 100px) !important;
    }
}

.page-container {
    background-color: var(--bs-gray-100);
    overflow-y: auto;
    min-height: calc(100vh - 80px - 80px);
}

    .page-container.vertical-center {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-container.fixed-banner {
        height: calc(100vh - 150px);
    }

    .page-container .page-head {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 150px;
        flex-basis: 100%;
    }

        .page-container .page-head h2 {
            font-size: 2rem;
            font-weight: bold;
            position: relative;
        }

        .page-container .page-head p {
            font-size: 1rem;
            text-align: center;
            margin: 0 10px;
            color: var(--bs-secondary);
        }

        .page-container .page-head.image-banner {
            background-image: url('/client/image/bg_header.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
        }

        .page-container .page-head.decorative-line h2:after {
            position: absolute;
            content: '';
            width: 20px;
            height: 20px;
            background-color: var(--bs-gray-300);
            border-radius: 50%;
            border: 5px solid var(--bs-gray-100);
            bottom: -29px;
            left: calc(50% - 10px);
            z-index: 10;
        }

        .page-container .page-head.decorative-line h2:before {
            position: absolute;
            content: '';
            width: 150%;
            margin: 0 -25%;
            height: 1px;
            background-color: var(--bs-gray-300);
            bottom: -20px;
            left: 0;
            z-index: 5;
        }

    .page-container .page-body {
        margin: 10px 10px 30px 10px;
    }

        .page-container .page-body .box-container {
            width: 100%;
            max-width: 90vw;
            margin: auto;
            box-shadow: 0 0 2px var(--bs-primary);
            border-radius: 20px;
            padding: 30px;
            background-color: #ffffff;
        }

        .page-container .page-body::-webkit-scrollbar {
            display: none;
        }
