.side-panel-outer {
    height: 100vh !important;
    width: 100vw !important;
    opacity: 0.5;
    top:0;
    right: 0;
    background-color: black;
    position: fixed;
    animation: darken 0.2s normal linear;
}

.side-panel {
    height: 100vh !important;
    top:0;
    bottom:0;
    right: 0;
    background: var(--partialBackgroundColor);
    position: fixed;
}

.side-panel-close-button-1 {
    position: absolute;
    height: 40px;
    width: 20px;
    left: -20px;
    background: #ddd;
}

.side-panel-close-button-4 {
    position: absolute;
    height: 100vh;
    width: 0.1px;
    left: 0;
    background: var(--partialBackgroundColor);
    box-shadow: -1px 1px 2px 0 #a2a2a2;
}

.side-panel-close-button-2 {
    position: absolute;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    left: -40px;
    background: #ddd;
}

.side-panel-close-button-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute !important;
    top: 5px;
    left: -15px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    font-weight: 600;
    color: var(--darkGreyColor);
    background-color: #ddd;
}

.side-panel-close-button-3:hover {
    animation: darken-button 150ms linear;
    background-color: #bbbbbb;
}

.side-panel-template {
    height: 100vh;
    overflow-y: auto;
    padding: 5px;
}

@keyframes darken {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.5;
    }
}

@keyframes darken-button {
    from {
        background: #ddd;
    }
    to {
        background: #bbbbbb;
    }
}