/* mobile style*/
@media only screen and (max-width: 768px) {
    .mt-footer {
        margin-bottom: 20px !important;
    }

    .col-5 {
        flex-basis: 50% !important;
        max-width: 50% !important;
    }

    .col-2 {
        flex-basis: 100% !important;
        max-width: 100% !important;
    }

    .col-10 {
        flex-basis: 100% !important;
        max-width: 100% !important;
    }

    .store-list {
        min-height: unset;
    }

    .store-list .store-thumbnail {
        width: 100px;
        justify-content: center;
    }

    .store-list .store-content {
        width: calc(100% - 100px)
    }

    .store-list .store-content {
        flex-flow: column;
        gap: 15px;
    }

    .store-list .store-content .store-left {
        width: 100%;
        padding: 0;
    }

    .store-list .store-content .store-right {
        width: 100%;
        position: relative;
    }

    .store-list .store-thumbnail .store-off {
        font-size: 18px;
        line-height: 24px;
    }

    .store-list .store-content .store-right a {
        width: auto;
    }

    .store-list .store-content .store-title {
        font-size: 16px;
        margin: 0;
    }

    div#masthead .header-inner {
        padding: 0 15px;
    }

    .banner_hero_top .text-box {
        width: 90% !important;
    }

    .coupon-store-table thead {
        display: none !important;
    }

    table.coupon-store-table tr td {
        width: 100% !important;
        display: block;
    }

    table.coupon-store-table tbody tr {
        width: 100%;
        display: flex;
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.08);
        list-style: none;
        border-radius: 10px;
        flex-direction: column;
        background-color: #ffffff;
        padding: 20px;
        margin: 0 0 20px 0;
    }

    table.coupon-store-table tbody tr td:last-child {
        border: 0;
    }
    table.coupon-store-table tbody tr .button_style{
        width: 100% !important;
    }
}

/* iPad landscape style here */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

}

/* iPad portrait style here */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {


}

/**desktop**/
@media only screen and (min-width: 1440px) {

}