﻿.font-size-lg {
    font-size: large !important;
}
.margin-0 {
    margin: 0;
}

/***********************************************
*************** MEDIA QUERY'S ******************
***********************************************/

/****** XS *******/
@media (max-width: 768px) {

    .modal-lg {
        width: 96.5%;
        left: 10px;
        top: 8px !important;
        height: 90%;
    }

    .modal-body {
        max-height: 60% !important;
    }
}

/****** SM *******/
@media (min-width: 768px) and (max-width: 1024px) {
    .modal-lg {
        width: 98.5%;
        left: 292px;
        top: 8px !important;
        height: 96%;
    }

    .modal-body {
        max-height: 70% !important;
    }
}

/****** MD *******/
@media (min-width: 1024px) and (max-width: 1200px) {
    .modal-lg {
        width: 98.5%;
        left: 292px;
        top: 8px !important;
        height: 96%;
    }

    .modal-body {
        max-height: 70% !important;
    }
}

/****** LG *******/
@media (min-width: 1200px) {
    .modal-lg {
        width: 98.5%;
        left: 292px;
        top: 8px !important;
        height: 96%;
    }

    .modal-body {
        max-height: 70% !important;
    }
}