.exchange_chose__container {
    float: right;
    margin-top: 20px;
}

.exchange_chose__exch.td2 {
    /* margin-bottom: 15px; */
}

@media (min-width: 1241px) {
    .exchange_chose__container {
        /* width: calc((100% - 60px)/3); */
        width: calc((100% - 320px - 60px)/2);
        margin-top: 0;
    }
}

@media (min-width: 1620px) {
    .exchange_chose__container {
        width: calc((100% - 375px - 60px)/2);
    }
}

.last-exchanges {
    border-radius: 5px;
    border: 1px solid #dadbdc;
    box-shadow: 0 0 20px #ccc;
    padding: 15px;
    width: 484px;
    clear: both;
}

.last-exchanges .last-exchanges__title {
    color: #000;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    margin-top: 0;
    margin-bottom: 15px;
}

.last-exchanges .last-exchange__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exchange-block {
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    transition: all .5s ease;
}

.exchange-block p {
    margin: 0;
}

.exchange-block .exchange-block__give {}

.exchange-block .exchange-block__give .exchange-block__currency {}

.exchange-block .exchange-block__give .exchange-block__currency .exchange-block__name {
    line-height: 42px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    margin-top: -6px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exchange-block .exchange-block__give .exchange-block__value {
    margin-left: 42px;
}

.exchange-block .exchange-block__give .exchange-block__currency img {
    height: 36px;
    width: 36px;
}

.exchange-block .exchange-block__icon {
    font-size: 18px;
    color: gray;
    transition: all .5s ease;
}

.exchange-block .exchange-block__receive {}

.exchange-block .exchange-block__receive .exchange-block__value {
    margin: 0 0 0 42px;
}

.exchange-block .exchange-block__receive .exchange-block__currency .exchange-block__name {
    line-height: 42px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    margin-top: -6px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


@media screen and (max-width: 1240px) {
    /* .exchange_chose__exch.td2 {
        margin-top: 20px;
    } */

    /* .section-exchange_chose {
        padding: 15px;
    } */

    .exchange_chose__container,
    .exchange_chose__container .last-exchanges {
        float: left;
        width: 100%;
    }

    .exchange_chose__container .last-exchanges .last-exchange__container {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .exchange_chose__container .last-exchanges .last-exchanges__exchange:first-child {
        margin-right: 15px;
    }

    .exchange_chose__container .last-exchanges .last-exchanges__exchange {
        min-width: 410px;
        width: 420px;
    }
}

@media screen and (max-width: 576px) {
    .exchange_chose__container .last-exchanges .last-exchanges__exchange:first-child {
        margin-right: 0;
    }

    .exchange_chose__container .last-exchanges .last-exchanges__exchange {
        min-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .exchange-block {
        flex-direction: column;
        align-items: center;
    }

    .exchange-block .exchange-block__give,
    .exchange-block .exchange-block__receive {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .exchange-block .exchange-block__icon {
        transform: rotate(90deg);
        margin: 15px 0;
    }

    .exchange-block .exchange-block__give .exchange-block__value,
    .exchange-block .exchange-block__receive .exchange-block__value {
        margin: 0;
    }

    .exchange-block .exchange-block__give .exchange-block__currency .exchange-block__name,
    .exchange-block .exchange-block__receive .exchange-block__currency .exchange-block__name {
        max-width: 155px;
    }
}