#timer-wrap-new{
    position: relative;
    display: block;
    font-family: "Berlingske Sans";
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    line-height: 40px;
    padding-bottom: 15px;
}

#timer-wrap-new h4{
    font-family: "Berlingske Sans";
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px; /* 18px */
}

.timer-background{
    position: relative;
    display: inline-block;
    background-color: #448d9c;
    width: 80px;
    text-align: center;
    margin-right: 8px;
    border-radius: 8px;
    padding: 6px;
}

.timer-background.timer-days:after,
.timer-background.timer-hours:after,
.timer-background.timer-minutes:after,
.timer-background.timer-seconds:after{
    display: block;
    font-size: 10px;
    position: absolute;
    top: 26px;
    left: 0px;
    width: 100%;
    text-align: center;
}


.timer-background.timer-days:after{
    content: "dagar";
}

.timer-background.timer-hours:after{
    content: "timmar";
}

.timer-background.timer-minutes:after{
    content: "minuter";
}

.timer-background.timer-seconds:after{
    content: "sekunder";
}

.timer-background.timer-hours:before,
.timer-background.timer-minutes:before,
.timer-background.timer-seconds:before{
    display: block;
    font-size: 30px;
    position: absolute;
    top: 4px;
    content: ":";
    left: -44px;
    width: 100%;
    text-align: center;
}


@media screen and (min-width: 768px) {
    #timer-wrap-new{
        font-size: 50px;
        line-height: 50px;
        padding-bottom: 15px;
    }
    
    .timer-background {
        width: 150px;
        margin-right: 12px;
        border-radius: 12px;
        padding: 12px;
    }
    
    .timer-background.timer-days:after,
    .timer-background.timer-hours:after,
    .timer-background.timer-minutes:after,
    .timer-background.timer-seconds:after{
        font-size: 12px;
        top: 40px;
    }
    
    .timer-background.timer-hours:before,
    .timer-background.timer-minutes:before,
    .timer-background.timer-seconds:before{
        font-size: 40px;
        top: 8px;
        left: -80px;
    }
    
    #timer-wrap-new h4{
        font-size: 34px;
        line-height: 40px;
    }
}

@media screen and (min-width: 992px) {
    #timer-wrap-new{
        font-size: 65px;
        line-height: 65px;
        padding-bottom: 0px;
    }
    
    .timer-background {
        width: 210px;
        margin-right: 15px;
        border-radius: 15px;
        padding: 15px;
    }
    
    .timer-background.timer-days:after,
    .timer-background.timer-hours:after,
    .timer-background.timer-minutes:after,
    .timer-background.timer-seconds:after{
        font-size: 16px;
        top: 50px;
    }
    
    .timer-background.timer-hours:before,
    .timer-background.timer-minutes:before,
    .timer-background.timer-seconds:before{
        font-size: 50px;
        top: 12px;
        left: -112px;
    }
    
    #timer-wrap-new h4{
        font-size: 48px;
        line-height: 52px;
    }
}