  .exchange-rates__grid {
                border: 1px solid rgba(11, 31, 53, 0.1);
            }

            .exchange-rates__block.bottom {
                padding-top: 0;
                margin-bottom: 10px;
            }

            .exchange-rates__block {
                padding: 1.5rem 0.5rem 0 0.5rem;
            }

            .exchange-rates__converter {
                display: flex;
                flex-direction: column;
                gap: 1rem
            }

            .exchange-rates__converter_inputs_block {
                display: flex;
                flex-direction: column;
                gap: 1rem
            }

            .exchange-rates__converter_label {
                position: relative;
                display: flex;
                flex-direction: column;
                padding: 0.5rem 0.5rem;
                font-size: .875rem;
                line-height: 1.25rem;
                color: rgb(99 110 130 / 1);
                height: 84px;
                border-radius: .5rem;
                border: 1px solid rgb(232 233 234 / 1);
                background-color: rgb(255 255 255 / 1);
                transition: background 0.2s ease
            }

            .exchange-rates__converter_label:hover {
                background-color: rgb(247 248 249 / 1);
            }

            .exchange-rates__converter_label input,
            .converter_currency_icon.input {
                transition: background 0.2s ease;
                line-height: 30px;
                font-size: 25px;
                outline: none;
                border: none;
            }


            .exchange-rates__converter_label input {
             
                width: 100%
            }

            .exchange-rates__converter_label input:hover {
                background-color: rgb(247 248 249 / 1);
            }

            #converter_currency_selected_item {
                cursor: pointer;
            }

            .exchange-rates__converter-pass,
            .exchange-rates__converter_button_block {
                position: relative;
                display: flex;
                justify-content: center;
            }

            .exchange-rates__converter-pass button {
                transition: background 0.2s ease;
                position: absolute;
                bottom: -18px;
                background-color: white;
                border: 1px solid rgb(232 233 234 / 1);
                border-radius: 9999px;
                cursor: pointer;
                padding: 1rem;
                width: 55px;
                height: 55px;
                z-index: 1;
            }

            .exchange-rates__converter-pass button:hover {
                background-color: rgb(247 248 249 / 1);
            }

            .exchange-rates__converter-pass svg {
                transform: rotate(90deg)
            }

            .exchange-rates__converter_result_block {
                text-align: center;
                font-size: 35px;
                font-weight: 600
            }

            .sprite-icon {
                display: inline-block;
                vertical-align: middle;
            }

            .converter_currency_icon_block {
                display: flex            ;
                align-items: center;
                position: relative
            }

            #converter_from_currency_sign {
                line-height: 30px;
                font-size: 25px;
                position: absolute;
                left: 0;
                color: black
            }

            .converter_currency_list {
                position: absolute;
                z-index: 2;
                left: 0;
                top: 62px;
                padding: 0.7rem 0.5rem;
                width: 100%;
                margin: 0;
                list-style: none;
                display: none;
                border-radius: .5rem;
                border: 1px solid rgb(232 233 234 / 1);
                background-color: rgb(255 255 255 / 1);
                transition: background 0.2s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            }

            .converter_currency_list.slide-up {
                animation: slide-up 0.4s ease;
                display: block
            }

            .converter_currency_item {
                cursor: pointer;
                transition: 0.2s ease;
            }

            .converter_currency_item:hover {
                background-color: rgb(247 248 249 / 1);
            }

            @keyframes slide-up {
                0% {
                    opacity: 0;
                    transform: translateY(20px);
                }

                100% {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            #exchange-rates__converter_result_block{
                display: none;
            }