@media only screen and (min-device-width : 320px) and (max-device-width : 768px) {
    .clock {
        width: 80% !important;
        display: flex;
        justify-content: center;
    }

    .draw-timer {
        margin-bottom: 15px;
        align-items: center;
    }

    .logo {
        justify-content: center;
    }

    .header-inner {
        background-size: 200%;
    }

    .header-left, .header-right {
        height: 95px;
    }

    .navbar {
        display: flex;
        justify-content: space-around;
        background-color: var(--bg-color2);
        border-radius: var(--b-radius-l);
    }

    .navbar li {
        padding: 10px;
        border-radius: var(--b-radius-l);
    }

    .navbar li a {
        font-size: 1rem;
    }

    .operation-time {
        text-align: center;
        padding: 10px;
        margin-top: 20px;
    }

    .content {
        background-image: none;
    }

    .last-results-title {
        font-size: 21px;
    }
    
    .results-title {
        margin-bottom: 0;
        margin-top: 0;
    }

    .results-title h2 {
        font-size: 20px;
    }

    .numbers-content {
        width: 222px;
    }

    .last-results-wrapper.all-results-wrapper {
        margin-top: 0;
    }

    .last-results-wrapper.all-results-wrapper .row {
        background-image: none;
    }

    .last-results-wrapper .row {
        background-image: url(../img/body-bg.png);
        background-size: 80%;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 25px 0;
    }

    .results-grid {
        background-image: url(../img/body-bg.png);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .footer-bottom {
        background-size: 200%;
    }

    .page-link, .page-link a {
        width: 40px;
        height: 40px;
    }

    .page-link.first-page, .page-link.first-page a, .page-link.last-page, .page-link.last-page a {
        background-color: transparent;
        width: 55px;
    }
}


/* iPad and Tablests Portrait */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {

}

/* Laptops */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) {


}


@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {



}


@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {


}