﻿.modal-header {
    background-color: #f5f6f8;
}

.modal-footer {
    background-color: #f5f6f8;
}

.modal-content.confirmation {
    box-shadow: 0 6px 12px #abb1b8;
}

.modal-header.confirmation {
}

.modal-footer.confirmation {
}

/*
** CSS for modal side-part from right
*/
.modal-side-right .modal-dialog {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    margin: 0;
    width: 100%;
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.modal-side-right.show .modal-dialog {
    right: 0;
}

.modal-side-right .modal-content {
    height: 100%;
    border-radius: 0px;
}

/*
** CSS for modal side-part from left
*/
.modal-side-left .modal-dialog {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    margin: 0;
    width: 100%;
    transition: left 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.modal-side-left.show .modal-dialog {
    left: 0;
}

.modal-side-left .modal-content {
    height: 100%;
    border-radius: 0px;
}
