

.container-select-price{
  position: absolute;
  top: 24px;
  right: 20px;
  z-index: 0;
}
.container-select-price-value{
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #E5E4E4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}
.container-select-price-value.active{
    background-color: #366891;
    color: white;
}
.container-select-price-value.icon-RUB::after{
    content: "₽";
}
.container-select-price-value.icon-USD::after{
    content: "$";
}
.container-select-price-value.icon-EUR::after{
    content: "€";
}