.top-currencies {
    margin-top: 24px;
    margin-bottom: 24px;
}

.top-currencies .top-currencies-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.top-currencies .currencies-items {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: var(--primary-boxshadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-currencies .currency-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    padding: 0 15px 15px;
}

.top-currencies .price-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-currencies .currency-details.hide .price-main {
    visibility: hidden;
}

.top-currencies .currency-name {
    color: var(--color-text-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    line-height: 30px;
    padding: 15px 15px 0;
}

.top-currencies .date {
    color: var(--color-text-secondary);
    font-size: 12px;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 18px;
}

.top-currencies .price-main > div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-currencies .price {
    color: var(--color-text-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    line-height: normal;
}

.top-currencies .percentage-change {
    font-size: 14px;
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    line-height: 18px;
}

.top-currencies .currencies-items .price-main .change-value {
    color: var(--color-dark-gray-6);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    line-height: 20px;
}

.top-currencies .currencies-items .change-value.redcolor,
.top-currencies .currencies-items .percentage-change.redcolor {
    color: var(--color-error);
}

.top-currencies .currencies-items .change-value.greencolor,
.top-currencies .currencies-items .percentage-change.greencolor {
    color: var(--color-dark-green);
}

.top-currencies .view-more {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-currencies .locked-card {
    border-radius: 0 0 8px 8px;
    background: rgb(255 255 255 / 1%);
    backdrop-filter: blur(10px);
    /* stylelint-disable-next-line property-no-vendor-prefix */
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.top-currencies .locked-card img {
    align-self: center;
}

@media (width <=768px) {
    .top-currencies .top-currencies-list {
        grid-template-columns: 100%;
    }

    .top-currencies .market-overview-filters .percentage-change {
        font-size: 12px;
        line-height: 16px;
    }
}
