.currencies .currency_toggles {
    display: flex;
    border: 1px solid #E5F0FD;
    border-radius: 0.5em;
}
.currencies .currency_toggle_butt {
    margin: -1px;
    box-sizing: border-box;
    width: 3.625em;
    height: 1.625em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5em;
    cursor: pointer;
    transition-property: background-color, color;
    transition-duration: 0.3s;
}
.currencies .currency_toggle_butt_label {
    font-size: 0.875em;
}
.currencies .currency_toggle_input {
    display: none;
}
.currencies .currency_toggle_input:checked + .currency_toggle_butt {
    background-color: #2F80ED;
    color: #ffffff;
}
.currencies .currencies_rate {
    text-align: right;
    font-size: 0.875em;
    margin-top: 1em;
}