
.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-1 {
    flex: 1;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.row-flex-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.col-flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: end;
}

.items-center {
    align-items: center;
}

.items-center {
    align-items: end;
}

.body-container {
    padding-top: 40%;
}

.body-container .count-down {
    line-height: 50px;
    font-size: 28px;
    color: rebeccapurple;
    text-decoration: underline;
}

.body-container .divider {
    height: 30px;
}

.body-container .tip-txt {
    line-height: 25px;
    color: #999999;
    font-size: 14px;
}