.fiat-calc {
    font-family: YekanBakh !important;
    width: 100%;
    display: flex;
    gap: 16px;
}

.fiat-calc__panels, .fiat-calc__results {
    width: 50%;
    background: #F6F8FE;
    padding: 32px;
    border-radius: 20px;
    min-height: 480px;
}

.fiat-calc__panels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fiat-calc__panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fiat-calc__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.fiat-calc__label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4C5E8C;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    padding: 0 12px;
}

.fiat-calc__selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #FCFEFF;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #EBEBEB;
    cursor: pointer;
    position: relative;
    height: 48px;
}
.fiat-calc__selector-image {
    width: 24px;
    height: 24px;
}
.fiat-calc__selector-image > img {
    width: 24px;
    height: 24px;
    border-radius: 50px;
    border: 1px solid #ebebeb;
}
.fiat-calc__selector-name {
    color: #152242;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    flex: 1;
}
.fiat-calc__selector-price {
    color: #3E74FE;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    margin-left: 8px;
}
.fiat-calc__selector-arrow {
    width: 12px;
    height: 12px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEyIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQogICAgPHBhdGggZD0iTTEgMS41NDQ5Mkw1LjkxMDE2IDYuNDU1MDhMMTAuODIwMyAxLjU0NDkyIiBzdHJva2U9IiM2ODdGOEYiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4NCjwvc3ZnPg0K);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center center;
}
.fiat-calc__selector-arrow--open {
    rotate: 180deg;
}

.fiat-calc__dropdown {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 84px;
    position: absolute;
    background: #FCFEFF;
    z-index: 2;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #EBEBEB;
    border-radius: 12px;
    padding: 16px;
    gap: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.fiat-calc__dropdown--open {
    display: flex;
}

.fiat-calc__search#search_pair {
    border: 1px solid #EBEBEB;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    padding: 12px 16px;
    border-radius: 12px;
}
.fiat-calc__search#search_pair:focus {
    border-color: #3e74fe !important;
    border-style: solid !important;
    border-width: 1px !important;
    outline: none !important;
}

.fiat-calc__list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
}
.fiat-calc__list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-bottom: 1px solid #E9EBF1;
    cursor: pointer;
}
.fiat-calc__list-item:hover {
    background: #ECF1FF;
}
.fiat-calc__item-img {
    width: 24px;
    height: 24px;
    border-radius: 50px;
    border: 1px solid #ebebeb;
}
.fiat-calc__item-name {
    flex: 2;
    max-width: 200px;
    color: #152242;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
}
.fiat-calc__item-symbol {
    flex: 1;
    color: #152242;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
}
.fiat-calc__item-price {
    color: #3E74FE;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0;
}

.fiat-calc__input-wrap {
    display: flex;
    direction: ltr;
    align-items: center;
    position: relative;
}
.fiat-calc__input-symbol {
    position: absolute;
    right: 12px;
    color: #A1ABC3;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}
.fiat-calc__input {
    border: 1px solid #EBEBEB !important;
    background: #FCFEFF;
    padding: 12px 52px 12px 16px !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    text-align: left;
    direction: ltr;
    border-radius: 12px !important;
    width: 100%;
    color: #152242;
    height: 48px;
}
.fiat-calc__input:focus {
    border-color: #3e74fe !important;
    border-style: solid !important;
    border-width: 1px !important;
    outline: none !important;
}

.fiat-calc__change-fields {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fiat-calc__change-fields > svg {
    width: 32px;
    height: 32px;
}
.fiat-calc__results {
    position: relative;
}
.fiat-calc__results-body {
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.fiat-calc__results-body img {
    width: 24px;
    height: 24px;
}
.fiat-calc__results-title {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fiat-calc__result {
    padding: 0;
    display: none;
    gap: 12px;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}
.fiat-calc__result--show {
    display: flex !important;
}
.fiat-calc__result-title-icon {
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.99984 18.9583C5.05817 18.9583 1.0415 14.9416 1.0415 9.99996C1.0415 5.05829 5.05817 1.04163 9.99984 1.04163C14.9415 1.04163 18.9582 5.05829 18.9582 9.99996C18.9582 14.9416 14.9415 18.9583 9.99984 18.9583ZM9.99984 2.29163C5.74984 2.29163 2.2915 5.74996 2.2915 9.99996C2.2915 14.25 5.74984 17.7083 9.99984 17.7083C14.2498 17.7083 17.7082 14.25 17.7082 9.99996C17.7082 5.74996 14.2498 2.29163 9.99984 2.29163Z" fill="%23152242"/><path d="M10 12.7084C9.65833 12.7084 9.375 12.425 9.375 12.0834V7.08337C9.375 6.74171 9.65833 6.45837 10 6.45837C10.3417 6.45837 10.625 6.74171 10.625 7.08337V12.0834C10.625 12.425 10.3417 12.7084 10 12.7084Z" fill="%23152242"/><path d="M9.99987 13.5416C9.84154 13.5416 9.6832 13.4833 9.5582 13.3583L7.0582 10.8583C6.81654 10.6166 6.81654 10.2166 7.0582 9.97495C7.29987 9.73328 7.69987 9.73328 7.94154 9.97495L9.99987 12.0333L12.0582 9.97495C12.2999 9.73328 12.6999 9.73328 12.9415 9.97495C13.1832 10.2166 13.1832 10.6166 12.9415 10.8583L10.4415 13.3583C10.3165 13.4833 10.1582 13.5416 9.99987 13.5416Z" fill="%23152242"/></svg>');
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
    width: 16px !important;
    height: 16px !important;
}
.fiat-calc__result-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fiat-calc__result-title {
    color: #152242;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fiat-calc__result-first {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 4px;
    color: #152242;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
    text-align: right;
    line-height: 24px;
}
.fiat-calc__result-first-info {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: right;
}
.fiat-calc__result-first .fiat-calc__result-count {
    color: #3E74FE;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: right;
}
.fiat-calc__result-count {
    color: #3E74FE;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}
.fiat-calc__result-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #152242;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.fiat-calc__result-second-info {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: right;
}
.fiat-calc__result-first-image, .fiat-calc__result-second-image {
    width: 24px;
    height: 24px;
}

.fiat-calc__result-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fiat-calc__result-item {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: space-between;
    color: #1F3262;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
}
.fiat-calc__result-item .fiat-calc__result-count {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
}
.fiat-calc__result-label {
    color: #7684A7;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    display: flex;
    gap: 4px;
    align-items: center;
}

.fiat-calc__actions {
    display: none;
}
.fiat-calc__ref-link--no-cta {
    display: none !important;
}
.fiat-calc__actions .fiat-calc__ref-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #3E74FE;
    border-radius: 12px;
    padding: 8px 16px;
    color: #3E74FE;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-decoration: none !important;
    flex: 1;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}

.fiat-calc__result-first > .fiat-calc__ref-link, .fiat-calc__result-second > .fiat-calc__ref-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #3E74FE;
    cursor: pointer;
    text-decoration: none !important;
    justify-content: end;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-right: auto;
}
.fiat-calc__result-first > .fiat-calc__ref-link > svg, .fiat-calc__result-second-info > .fiat-calc__ref-link > svg {
    width: 20px;
    height: 20px;
}

.fiat-calc__divider {
    border-bottom: 1px solid #E9EBF1;
}

.fiat-calc__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #4C5E8C;
}
.fiat-calc__info-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: 0;
    text-align: right;
    vertical-align: middle;
}
.fiat-calc__info-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: 0;
    text-align: right;
}
.fiat-calc__info-text mark {
    background: none;
    color: #3E74FE;
}
.fiat-calc__info-text a {
    background: none;
    color: #3E74FE;
    text-decoration: none;
}

@media only screen and (max-width: 760px) {
    .fiat-calc {
        flex-direction: column;
    }
    .fiat-calc__panels, .fiat-calc__results {
        padding: 16px;
    }
    .fiat-calc__label {
        font-size: 14px;
    }
    .fiat-calc__result {
        gap: 24px;
    }
    .fiat-calc__result-item {
        flex-direction: column;
    }
    .fiat-calc__result-item > span {
        width: 100%;
    }
    .fiat-calc__result-item > span:first-child {
        text-align: left;
    }
    .fiat-calc__result-item > span:last-child {
        text-align: left;
    }
    .fiat-calc__panels,
    .fiat-calc__results {
        width: 100%;
    }
    .fiat-calc__result-first .fiat-calc__ref-link, .fiat-calc__result-second .fiat-calc__ref-link {
        display: none;
    }
    .fiat-calc__actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex-wrap: wrap;
        min-height: 42px;
    }
}
