.crypto-to-fiat{
    color: #32373B;
    font-size: 11px;
    line-height: 12px;
    display: inline-block;
    margin-left: 5px;
    &__content {
        display: inline-block;
        opacity: 0.5;
    }
    &__loader {
        font-size: 11px;
        line-height: 12px;
        cursor: pointer;
        fill: #468EBA;
        width: 12px;
        height: 12px;
        margin-left: 5px;
        vertical-align: bottom;
        &:hover{
            opacity: 1;
        }
        &.loading{
            animation: loadingIconAnimation 1.2s infinite;
        }
    }
}

@keyframes loadingIconAnimation {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}
