.ds-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
}

.ds-modal-content {
    background-color: #fff;
    padding: 48px 24px 84px;
    border: 1px solid #888;
    width: 340px;
    position: fixed;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    transition: right 0.5s ease-in-out;
    bottom: 0;
    top: 0;
    right: -100%;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.2);
    overflow: auto;
}
.ds-modal-content-show{
    right: 0;
}


.ds-close-button {
    color: #aaa;
    position: absolute;
    top: 0;
    right: 16px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.ds-close-button:hover,
.ds-close-button:focus {
    color: #000;
    text-decoration: none;
}
.ds-modal-content > button.action.primary{
    border-radius: 30px;
    display: block;
    margin: auto;
}
