/* Print */
@media print {

    * {
        float: none !important;
    }

    a[href]:after {
        content: '';
    }

    
    .col-print-1{ width: calc(1/12 * 100%); }
    .col-print-2{ width: calc(1/12 * 100%); }
    .col-print-3{ width: calc(1/12 * 100%); }
    .col-print-4{ width: calc(1/12 * 100%); }
    .col-print-5{ width: calc(1/12 * 100%); }
    .col-print-6{ width: calc(1/12 * 100%); }
    .col-print-7{ width: calc(1/12 * 100%); }
    .col-print-8{ width: calc(1/12 * 100%); }
    .col-print-9{ width: calc(1/12 * 100%); }
    .col-print-10{ width: calc(1/12 * 100%); }
    .col-print-11{ width: calc(1/12 * 100%); }
    .col-print-12{ width:100%; float:left; }
    
}
/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1300px;
    }
}



/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
    .home-row {
        min-height: 1px;
    }
    #termsModal .modal-dialog {
        width: auto;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
