@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary-color: #0a74bd;
    --secondary-color: #032338;
    --black: #01121d;
    --text-primary: #5f5f5f;
    --soft-primary: #0a75bd42;
    --shadow: #63636369;
}

.sidebar {
    height: 100vh;
    width: 300px;
    background-color: white;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 9999;
    transition: 0.3s ease;
    box-shadow: 5px 5px 10px var(--shadow);
    padding: 10px;
}

.sidebar p {
    margin: 10px 0;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    color: var(--text-primary);
}

.side-items {
    display: flex;
    flex-direction: column;
    background-color: #eeeeee;
    padding: 20px;
    border-radius: 10px;
}

.side-items a,
.side-intern a {
    padding: 10px;
    border-radius: 10px;
    transition: 0.2s;
    width: 100%;
    color: var(--black);
}

.side-items a:hover,
.side-intern a:hover {
    background-color: var(--black);
    color: white;
}

.side-head {
    padding: 5px;
    background-color: #eeeeee;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.close {
    height: 30px;
    width: 30px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: 0.5s;
    cursor: pointer;
}

.close:hover {
    background-color: var(--black);
}

.side-intern {
    background-color: #eeeeee;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.show-bar {
    left: 0;
}