.short-pair-curs {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    border-top: 1px solid #F6F5F6;
    clear: both;
}

.short-pair-curs__info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.short-pair-curs__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.short-pair-curs__logo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.short-pair-curs__name {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    word-break: break-word;
}

.short-pair-curs__name a {
    color: #000;
    text-decoration: none;
}

.short-pair-curs__name a:hover {
    text-decoration: underline;
    color: #0072DB;
}

.short-pair-curs__symbol {
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #808080;
}

.short-pair-curs__values {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.short-pair-curs__value {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 50%;
    margin-bottom: 15px;
    padding: 0 5px;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    white-space: nowrap;
}

.short-pair-curs__value-price {
    margin: auto 0;
    font-weight: bold;
}

.short-pair-curs__value-price[data-before]:before {
    content: attr(data-before);
    font-weight: normal;
    color: #808080;
}

.short-pair-curs__value-change {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
}

.short-pair-curs__value-change--up {
    color: #00B67F;
}

.short-pair-curs__value-change--down {
    color: #E32C13;
}

.short-pair-curs__value-change:before {
    content: "◣";
    margin-right: 5px;
    font-size: 8px;
    line-height: 8px;
}

.short-pair-curs__value-change--up:before {
    margin-bottom: -6px;
    color: #00B67F;
    transform: rotate(135deg);
}

.short-pair-curs__value-change--down:before {
    margin-top: -6px;
    color: #E32C13;
    transform: rotate(315deg);
}

.short-pair-curs__button {
    height: 40px;
}

@media (min-width: 576px) {

    .short-pair-curs__value {
        width: 25%;
    }
}

@media (min-width: 768px) {

    .short-pair-curs {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .short-pair-curs__info {
        flex-wrap: nowrap;
        margin: 0 15px 0 0;
    }

    .short-pair-curs__info-aside {
        display: flex;
        flex-direction: column;
    }

    .short-pair-curs__name {
        margin-bottom: 5px;
    }

    .short-pair-curs__values {
        flex-wrap: nowrap;
        margin-left: auto;
    }

    .short-pair-curs__value {
        min-width: 124px;
        margin-bottom: 0;
        font-size: 16px;
        line-height: 21px;
    }

    .short-pair-curs__value-change {
        font-size: 14px;
        line-height: 16px;
    }

    .short-pair-curs__buttons {
        flex-wrap: nowrap;
        margin-left: 15px;
    }

    .short-pair-curs__button {
        width: 100px;
        height: 43px;
    }
}

@media (min-width: 1024px) {

    .short-pair-curs__value {
        min-width: 130px;
    }
}