/*Desktop + tablet*/

.currency {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}
.currency__name {
    font-size: 14px;
    color: #000000;
    opacity: 0.45;
    margin: 0px 10px;
}
.currency__ru-text {
    font-weight: 600;
    font-size: 10px;
    color: #000000;
    opacity: 0.3;
    text-align: center;
}
.currency__arrow {
    flex: none;
    order: 1;
    flex-grow: 0;
    margin: 0px 6px;
}
.currency__value {
    font-weight: bold;
    font-size: 14px;
    color: #000000;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: 0px 6px;
}
.currency__rate {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.currency-euro {
    margin-top: 12px;
}

/*Tablet + smartphone*/

.money {
    display: none;
}

@media (min-width: 0px) and (max-width: 1024px)  {
    .money {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-right: 10px;
        /*column-gap: 20px;*/
    }
}

.money-usd,
.money-euro {
    display: flex;
    align-items: center;
}

.money-name {
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
    color: #000000;
    opacity: 0.45;
    align-self: flex-end;

}

.purchase {
    margin: 0 10px;
}

.ru-text {
    font-weight: 600;
    font-size: 10px;
    line-height: 150%;
    color: #000000;
    opacity: 0.3;
}

.rate {
    display: flex;
    align-items: center;
}

.money__value {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 150%;
    color: #000000;
}

.money__arrow {
    margin-left: 6px;
}

.sale {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

