.psgTimer {
    display: block;
    margin: 0 auto 30px auto;
    font-size: 0;
}
.psgTimer_numbers {
    display: flex;
    justify-content: center;
}
.psgTimer_numbers .time-element {
    display: flex;
    vertical-align: top;
    width: 130px;

    line-height: 100px;
    margin: 0 20px;
    padding: 2px;
    justify-content: center;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(214, 214, 214, 1) 50%, rgba(255, 255, 255, 1) 100%);
    font-weight: 600;
    border-radius: 20px;
    font-size: 60px;
    text-align: center;
    text-transform: capitalize;
    /* color: #00a19a;
    border: 1px solid #00a19a; */
}

.psgTimer_labels {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-transform: lowercase;
    margin-top: 10px;
}
.psgTimer_labels div {
    width: 130px;
    text-transform: capitalize;
    margin: 0 20px;
}
@media screen and (max-width: 1440px) {
    .psgTimer_numbers .time-element {
        
        margin: 0 5px;
        font-size: 45px;
    }
    .psgTimer_labels div {
        margin: 0 5px;
    }
}

@media screen and (max-width: 1024px) {
    .psgTimer_numbers .time-element {
        width: 100px;
        height: 100px;
        line-height: 90px;
        margin: 0 25px;
        font-size: 50px;
    }
    .psgTimer_labels div {
        margin: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .psgTimer {
        display: block;
    }
    .psgTimer_numbers .time-element {
        width: 100px;
        height: 100px;
        line-height: 90px;
    }
    .psgTimer_labels div {
        width: 100px;
    }
}

@media screen and (max-width: 640px) {
    .psgTimer_numbers .time-element {
        width: 80px;
        height: 80px;
        line-height: 70px;
        font-size: 35px;
    }
    .psgTimer_labels div {
        width: 80px;
    }
}
@media screen and (max-width: 440px) {
    .psgTimer_numbers .time-element {
        width: 60px;
        height: 60px;
        line-height: 55px;
        border-radius: 5;
        
    }
    .psgTimer_labels div {
        width: 60px;
        font-size: 16px;
    }
}
