﻿
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) and (max-width: 1564px) {

    /* CSS */
    .graph-image {
        width: 230px;
        height: 250px;
    }

    .btn-dashboard-buttons {
        font-size: 13px !important;
    }

    .header-card-image img {
        max-width: 53px;
    }
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

    /* CSS */
    .graph-image {
        width: 230px;
        height: 250px;
    }

    .btn-dashboard-buttons {
        font-size: 14px !important;
    }
    .header-card-image img {
        max-width: 45px;
    }
    .dashboard-button .card-title {
        font-size: 12px;
    }
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {


    .btn-dashboard-buttons {
        font-size: 14px !important;
    }

    .header-card-image img {
        max-width: 35px;
    }
    .dashboard-button .card-title {
        font-size: 12px;
    }
    .dashboard-button{
        margin-bottom:10px;
    }
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    .graph-image {
        width: 230px;
        height: 250px;
    }
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

    /* CSS */
    .page-title-heading {
        font-size: 14px !important;
        margin-top: 10px;
        margin-bottom: 15px !important;
    }
    .logo-custom {
        width: 90px;
        height: 40px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 18px;
        right: 30px;
    }
    .dashboard-button .card-title {
        font-size: 12px;
    }
    .dashboard-button img {
        width: 43px;
        margin-top: 10px;
    }
    .dashboard-button {
        margin-bottom: 10px;
        padding-left: 15px;
    }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

    /* CSS */
    .page-title-heading {
        font-size: 14px !important;
        margin-top: 10px;
        margin-bottom: 15px !important;
    }
    .logo-custom {
        width: 90px;
        height: 40px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 18px;
        right: 30px;
    }
    .dashboard-button .card-title {
        font-size: 12px;
    }

    .dashboard-button img {
        width: 43px;
        margin-top: 10px;
    }
    .dashboard-button {
        margin-bottom: 10px;
        padding-left: 15px;
    }
} 
