*,
*:after,
*:before {
    padding:0;
    margin:0;
    box-sizing: border-box;
}

.wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.sidebar {
    flex: 0 0 110px;
    /*box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);*/
    border-right: 1px solid #ccc;
    width: 110px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.right-panel {
    flex: 0 0 380px;
    border-left: 1px solid #ccc;
    width: 380px;
    margin-right: -380px;
    /*transition: margin-right 0.4s ease-in-out;*/
}

.right-panel.open {
    margin-right: 0px;
    /*transition: margin-right 0.4s ease-in-out;*/
}

.sidebar__wrapper {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar__logo {
    height: 110px;
    flex: 0 0 110px;
}

.sidebar__logo img {
    width: 100%;
}

.sidebar__menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar__menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar__menu ul li {
    text-align: center;
    margin: 2rem 0;
}

.sidebar__menu ul li a {
    color: inherit;
    text-decoration: none;
}

.sidebar__menu ul li svg {
    width: 50px;
    height: 50px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    border-bottom: 1px solid #ccc;
}

.header__account {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__account-logo svg {
    width: 2.2rem;
    height: 2.2rem;
}

.header__account-title h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: bolder;
}

.header__account-title p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.7;
}

.mc-calendar--modal.mc-calendar--opened {
    z-index: 1060;
}