/*Bootstrap modal size*/
@media (max-width: 1280px){
    .modal-dialog  {
        height: 85%;
        width: 85%;
    }
    .modal-body {
        height: 82%;
    }
}

@media screen and (min-width:1281px) and (max-width:1600px){
    .modal-dialog  {
        height: 700px;
        width: 1000px;
    }
    .modal-body {
        height: 550px;
    }
}

@media screen and (min-width:1601px) and (max-width:1920px){
    .modal-dialog  {
        height: 830px;
        width: 1200px;
    }
    .modal-body {
        height: 700px;
    }
}

/*Vertically centering Bootstrap modal window*/
.vertical-alignment-helper {
    display: table;
    height: 100%;
    width: 100%;
    pointer-events: none; /* This makes sure that we can still click outside of the modal to close it */
}

.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
    pointer-events: none;
}

.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width: inherit;
    height: inherit;
    /* To center horizontally */
    margin: 0 auto;
    pointer-events: all;
}