.widget * { font-family: Bitter; box-sizing: border-box; }
.widget {
    flex-direction: column;
    background-color: #F4F6F7;
    display: flex;
    text-align: center;
    padding: 30px 10px;
}
.widget > p, .widget > button { display: block; }
.widget > p { margin: 15px auto; }
.widget > p:nth-child(2n + 1) { font-size: 24px; font-weight: 600; line-height: 1.3; }
.widget > p:nth-child(2n + 2) { font-size: 16px; font-weight: 500; line-height: 1.2; }
.widget > button {
    height: auto;
    font-size:18px;
    font-weight:700;
    line-height: 1 !important;
    margin: 20px auto 15px;
    width: 152px;
    padding: 15px 12px;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    border-color:rgba(0,0,0,.35);
    background-color:#E67E22;
    color:#fff;
    cursor:pointer;
}
.widget > button:hover { background:#EA9346; }
.widget > .timer { font-size: 25px; font-weight: 500; line-height: 1; }
.widget > .timer .unit { font-size: 10px; }
.widget > .timer > div { margin: 5px; display: inline-block; width: 40px; }
.widget > .timer .digits {
    width: 34px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
