.mau-topbar-col {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mau-close-topbar {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    padding: 0;
    border: 2px solid red;
    color: red;
    text-align: center;
    line-height: 20px;
    background: transparent;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s;
}
.mau-close-topbar:hover {
    color: #fff;
    border-color: #fff;
}
.mau-topbar-text p {
    margin: 0;
    text-align: center;
}
.mau-timer span {
    display: block;
}
.mau-timer {
    display: flex;
    text-align: center;
    gap: 15px;
    padding-right: 15px;
}
.mau-topbar-col.mau-no-timer br {
    display: none;
}
.mau-topbar-col.mau-no-timer {
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .mau-topbar-col {
        display: block;
    }
    .mau-topbar-text br {
        display: none;
    }
    .mau-timer {
        justify-content: center;
    }
    .mau-topbar p {
        font-size: 36px;
    }
    .mau-timer span>span:first-child {
        font-size: 32px !important;
    }
}