/**
  |============================
  | timer
  |============================
*/

.title-red {
    margin-bottom: 8px;
    color: #e32121;
}
.timer {
    padding-bottom: 0;
}
.timer__title {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.timer__block {
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    font-weight: 700;
}

.timer__block > p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 50px;
    line-height: 0;

    /* padding: 2px 7px 2px 8px; */

    border-radius: 12px;
    background-color: #5f6264;
    color: #fff;

    font-size: 28px;
}
.timer__block > span {
    height: 70px;
    font-size: 48px;
}

@media screen and (min-width: 375px) {
    .timer__block > p {
        font-size: 38px;
        width: 63px;
        height: 53px;
    }
}

@media screen and (min-width: 480px) {
    .timer__block > p {
        font-size: 48px;
        width: 73px;
        height: 63px;
    }
    .timer__block > span {
        height: 88px;
        font-size: 58px;
    }
}

/**
  |============================
  | mining
  |============================
*/

.mining__block-count {
    padding: 3px 0;
    margin-bottom: 12px;

    font-weight: 700;
    letter-spacing: 1px;
    font-size: 38px;

    border-radius: 12px;
    background-color: #5f6264;
    color: #fff;
}

@media screen and (min-width: 375px) and (max-width: 430px) {
    .mining__block-count {
        font-size: 42px;
    }
}

@media screen and (min-width: 480px) {
    .mining__block-count {
        font-size: 48px;
    }
}

/**
  |============================
  | power
  |============================
*/
.power > h2 {
    margin-bottom: 0;
}
.power__count {
    margin-bottom: 6px;
    font-size: 36px;
    font-weight: 700;
}

/**
  |============================
  | statistic
  |============================
*/

.statistic__list,
.account__list {
    display: flex;
    flex-direction: column;

    gap: 5px;
}
.statistic__item,
.account__item {
    display: flex;
    align-items: center;
}
.statistic__img-box,
.account__img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 30px;
    margin-right: 10px;

    background-color: #bee2f3;

    border-radius: 8px;
}

.statistic__text,
.account__text {
    display: flex;
    align-items: center;

    width: 100%;
    padding: 6px 9px 5px 6px;
    font-family: "Comfortaa", sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 300;

    color: #03008f;

    border: 1px solid #b3ddf2;
    border-radius: 8px;
}

.statistic__text-right,
.account__text-right {
    margin-left: auto;
    font-weight: 700;
}

@media screen and (min-width: 375px) {
    .statistic__text,
    .account__text {
        font-size: 16px;
        padding: 6px 12px 5px 8px;
    }
}

@media screen and (min-width: 480px) {
    .statistic__text,
    .account__text {
        font-size: 18px;
    }
}

.account {
    margin-bottom: 80px;
}

.account__img-box {
    background-color: transparent;
    border: 1px solid #b3ddf2;
}

.account__text {
    border: none;
    background-image: linear-gradient(75deg, #b3ddf2 40%, #ffffff 100%);
}
