.timerposition
{
    z-index: 999;
    position: fixed;
    right:100px;
    bottom:0px;
}
.timerdiv {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
    padding:10px;
    background-color: rgba(160,99,80, 0.9);
    border-radius: 5px 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}
.timerdiv .timertxt {
    display: flex;
    align-items: center;
    color: #fff;
    margin-right: 10px;
}
.timerdiv .timerbox {
    position: relative;
    width: 40px;
    height: 53px;
    background: #000;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
}
.timerdiv .timerbox .number {
    position: relative;
    top: -8px;
}
.timerdiv .timerbox .text {
    bottom: 2px;
    position: absolute;
}
.timerdiv .timerbox .number {
    font-size: 32px;
}
.timerdiv .timerbox .text {
    font-size: 15px;
}
.timerdiv .timerdot {
    display: flex;
    flex-direction: column;
    margin: 0 8px;
}
.timerdiv .timerdot .dot {
    background: #000;
    width: 3px;
    height: 3px;
    margin: 5px 0;
}
/* #smalllabel
{
    display: none;
    position: absolute;
    top: -26%;
    left: 50%;
} */

.timerlabelchange{
    font-size: 26px;
}

@media only screen and (max-width:1280px)
{
    .timerposition
    {
        right:100px;
        bottom:0px;
    }
    .timerdiv .timerbox {
        width: 40px;
        height: 53px;
    }
    .timerdiv .timerbox .number {
        font-size: 22px;
    }
    .timerdiv .timerbox .text {
        font-size: 12px;
    }
    .timerlabelchange{
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    /* #biglabel
    {
        display: none;
    }
    #smalllabel
    {
        display: block;
    } */
    .timerposition
    {
        right:100px;
        bottom:0px;
    }
    .timerdiv .timerdot {
        margin: 0 4px;
    }
}

@media only screen and (max-width:767px)
{
    /* #biglabel
    {
        display: block;
    }
    #smalllabel
    {
        display: none;
    } */

    .timerposition
    {
        right:100px;
        bottom: 0px;
    }
    .timerdiv .timerbox {
        width: 30px;
        height: 41px;
    }
    .timerdiv .timerbox .number {
        font-size: 18px;
    }
    .timerdiv .timerbox .text {
        font-size: 10px;
    }
    .timerlabelchange{
        font-size: 18px;
    }
}

@media only screen and (max-width:375px)
{
    .timerdiv {
        padding:5px;
    }
    .timerdiv .timertxt {
        margin-right: 5px;
    }
    .timerlabelchange {
        line-height: 1;
    }
}