﻿    .campaign-block, .campaign-block-inner {
        width: 100%;
        background: linear-gradient(#FD4F00, #FF8308);
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .campaign-block h5 {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        margin-right: 20px;
    }
    .campaign-close {
        align-items: flex-end;
    }
    .campaign-close-btn {
        width: 25px;
        height: 25px;
        border: 1px solid #fff;
        border-radius: 50%;
        background: none;
        line-height: 20px;
        margin-right: 7px;
        color: #fff;
    }
    .campaign-timer div {
        display: block;
        background: #fff;
        color: #000;
        display: flex;
        flex-direction: column;
        width: 40px;
        height: 30px;
        font-size: 14px;
        margin-right: 5px;
        align-items: center;
        justify-content: flex-start;
        border-radius: 6px;
    }
    .campaign-timer div span {
        font-size: 10px;
        font-weight: 400;
        color: #61656E;
        margin-top: -5px;
    }
    .campaign-timer a {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        text-transform: uppercase;
        color: #000;
        border-radius: 6px;
        padding: 0 10px 0 10px;
    }
    .campaign-timer .bold {
        font-weight: 600;
    }
    .showOnlyMobile {
        display: none !important;
    }
    .showOnlyDesktop {
        display: inherit !important;
    }
    .campaign-sticky {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 12;
}
    @media only screen and (max-width: 600px) {
        .showOnlyMobile {
            display: inherit !important;
        }
        .showOnlyDesktop {
            display: none !important;
        }
        .campaign-block {
            background: none;
            height: auto;
            color: #FF8308;
        }
        .campaign-block-inner {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: auto;
            background: white;
        }
        .campaign-block h5 {
            font-size: 13.5px;
            font-weight: 700;
            padding-left: 10px;
            margin-top: 10px;
            color: #fd5d02;
            text-align: center;
        }
        .campaign-timer {
            display: flex;
            width: calc(100% - 20px);
            padding: 10px;
            background: linear-gradient(#FD4F00, #FF8308);
            border-radius: 6px;
            margin: 10px;
        }
        .campaign-timer div {
            display: block;
            background: #fff;
            color: #000;
            display: flex;
            flex-direction: column;
            min-width: 50px;
            min-height: 40px;
            font-size: 14px;
            font-weight: 700;
            margin-right: 5px;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
        }
        .campaign-timer div span {
            font-size: 10px;
            font-weight: 400;
            color: #61656E;
            margin-top: -6px;
        }
        .campaign-timer a {
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: #fff;
            text-transform: uppercase;
            color: #000;
            height: 40px;
            flex: 1;
            border-radius: 6px;
            line-height: 18px;
            text-align: center;
        }
        .campaign-close-btn {
            font-size: 16px;
            font-weight: bold;
            margin-left: 7px;
            margin-right: 0;
        }
    }