@media (min-width: 1097px) {
    .header {
        display: none;
    }

    .container {
        width: 100vw;
        height: 100vh;
        min-height: 768px;
        display: flex;
        flex-direction: row;
        padding-top: 0;
    }

    .container .sidebar {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 260px;
        flex-grow: 0;
        flex-shrink: 0;
        background-color: white;
    }

    .container .sidebar.left {
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .container .sidebar.right {
        width: 382px;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
    }

    .container .sidebar .exit {
        margin-top: auto;
        margin-bottom: 142px;
    }

    .container>.content {
        flex: 1;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 40px;
        overflow-y: auto;
    }

    .sidebar > .logo {
        display: block;
        width: 147.72px;
        height: 40px;
        margin-top: 21px;
        margin-bottom: 139px;
    }

    .button.outline {
        color: #E55858;
        font-weight: bold;
        text-decoration: none;
        display: flex;
        align-items: center;
        border: none;
        background: none;
    }

    .button .icon {
        margin-right: 10px;
    }

    .sidebar .menu {
        width: 100%;
        list-style: none;
        padding: 0;
    }

    .sidebar .menu li {
        padding: 17px 0px;
        padding-left: 70px;
    }

    .sidebar .menu li a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #8A8A8A;
        font-weight: bold;
    }

    .sidebar .menu li img {
        margin-right: 10px;
    }

    .sidebar .menu li.active {
        border-left: 4px solid #0077FF;
        padding-left: 66px;
        border-left-width: 4px;
        background-color: #F0F7FF;
    }

    .sidebar .menu li.active a {
        color: #0077FF;
    }

    .icon {
        width: 26px;
        height: 26px;
    }
}
