.side-modal {
    position: fixed;
    width: 100%;
    right: 0;
    top: 57px;
    bottom: 0;
    z-index: 3;
    
    overflow-x: hidden;
    background-color: #00000029;
}

.side-modal>.side-modal-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    box-shadow: -10px 0px 10px #00000042;
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 15px 30px;
    overflow-y: auto;
    transition-duration: 0.3s;
    transition-property: width;
}

.side-modal-content>.side-modal-header {
    margin-bottom: 15px;
}

.side-modal-content>.side-modal-bottom {
    margin-top: auto;
}

.side-modal-closed {
    width: 0%;
    background-color: #00000000;
}

.side-modal-closed>.side-modal-content {
    width: 0px;
}