.mining-coins {
    overflow: hidden;
}

.mining-coins__header {
    display: none;
}

.mining-coin:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F6F5F6;
}

.mining-coin__info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.mining-coins__header {
    word-break: break-all;
}

.mining-coin__name {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #000000;
}

a.mining-coin__name:hover {
    text-decoration: underline;
}

.mining-coin__short-name {
    font-size: 14px;
    font-weight: 500;
    color: #A9A9A9;
}

.mining-coin__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.mining-coin__rating {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: #0072DB;
}

.mining-coin__comments {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
    color: #000000;
}

a.mining-coin__comments:hover {
    text-decoration: underline;
}

.mining-coin__logo {
    display: block;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.mining-coin__props {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mining-coin__prop {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


.mining-coin__prop:after {
    content: "";
    flex-grow: 1;
    width: 100%;
    min-width: 10px;
    display: block;
    height: 1px;
    margin: 0 5px 4px;
    background-image: linear-gradient(to right, #808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}

.mining-coin__prop-label {
    order: -1;
    font-size: 14px;
    line-height: 18px;
    white-space: nowrap;
    color: #808080;
}

.mining-coin__prop-value {
    order: 1;
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
}

.mining-coin__prop-value[data-after]:after {
    content: attr(data-after);
    display: inline-block;
    margin-left: 3px;
    color: #A9A9A9;
}

/*** Responsive ***/

@media (min-width: 768px) {

    .mining-coins__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 0;
        border-top: 1px solid #F6F5F6;
        border-bottom: 1px solid #F6F5F6;
    }

    .mining-coins__cell-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
    }

    .mining-coins__cell {
        font-size: 14px;
        line-height: 20px;
        font-weight: bold;
        text-align: right;
    }

    .mining-coins__cell--main {
        text-align: left;
    }

    .mining-coin {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 0 !important;
        padding: 20px 0 !important;
    }

    .mining-coin__props {
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
    }

    .mining-coin__prop:after {
        display: none;
    }

    .mining-coin__prop-label {
        display: none;
    }

    .mining-coin__prop-value {
        width: 100%;
        text-align: right;
    }

    .mining-coins__cell--main,
    .mining-coin__info {
        flex-shrink: 0;
        width: 180px;
        margin-bottom: 0;
    }

    .mining-coins__cell--nethash,
    .mining-coin__prop--nethash {
        width: 140px;
    }

    .mining-coins__cell--block-reward,
    .mining-coin__prop--block-reward {
        width: 120px;
    }

    .mining-coins__cell--coin-price,
    .mining-coin__prop--coin-price {
        width: 100px;
    }

    .mining-coins__cell--block-time,
    .mining-coin__prop--block-time {
        width: 120px;
    }
}

@media (min-width: 1024px) {

    .mining-coins__cell--main,
    .mining-coin__info {
        width: 220px;
    }
}