/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    width: 100%;
    height: 100%;
}

#sidebar {
    width: 650px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -650px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 650px);
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}


/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -650px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 650px);
    }
    #sidebarCollapse span {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .modal-dialog {
        width: 100%;
        max-width: none;
        /*height: 100%;*/
        margin: 0;
    }
    .modal-content {
        /*height: 100%;*/
        border: 0;
        border-radius: 0;
    }
    .modal-body {
        overflow-y: auto;
    }
    .btnEditarTransaccion {
        display: none;
    }
    .btnAgregarTransaccion {
        display: block;
        width: 100%;
    }
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show>.btn-danger.dropdown-toggle {
    background-color: #007bff;
    border-color: #007bff;
}