.satoshi-calc {
    clear: both;
    margin: 15px 0;
}

.satoshi-calc__description {
    margin-bottom: 15px;
}

.satoshi-calc__content {
    display: flex;
    flex-direction: column;
}

.satoshi-calc__field {
    display: flex;
    align-items: center;
    position: relative;
    height: 40px;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 5px;
    width: 100%;
}

.satoshi-calc__field:not(:last-child) {
    margin-bottom: 10px;
}

.satoshi-calc__input {
    width: 100% !important;
    height: 38px !important;
    padding: 0 62px 0 15px !important;
    font-size: 18px !important;
    line-height: 18px !important;
    font-weight: bold;
    border: 0 !important;
    outline: none;
    -webkit-appearance: none;
}

.satoshi-calc__value {
    -moz-appearance: textfield;
}

.satoshi-calc__value::-webkit-outer-spin-button,
.satoshi-calc__value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.satoshi-calc__equality {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.satoshi-calc__fields {
    display: flex;
    flex-wrap: wrap;
}

.satoshi-calc__ticker {
    display: flex;
    align-items: center;
    position: absolute;
    height: 24px;
    top: 6px;
    right: 10px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    border-left: 1px solid #E3E3E3;
}

@media (min-width: 576px) {

    .satoshi-calc__fields {
        justify-content: space-between;
    }

    .satoshi-calc__field {
        width: 49%;
    }

    .satoshi-calc__field-satoshi {
        width: 100%;
    }
}

@media (min-width: 768px) {

    .satoshi-calc__content {
        flex-direction: row;
        margin: 0 -5px;
        align-items: center;
    }

    .satoshi-calc__field {
        width: calc(47%);
        margin: 0 5px;
    }

    .satoshi-calc__value {
        text-align: center;
    }

    .satoshi-calc__equality {
        flex-shrink: 0;
        margin: 0 5px;
    }
}

@media (min-width: 1024px) {

    .satoshi-calc__content {
        margin: 0 -8px;
    }

    .satoshi-calc__field {
        margin: 0 8px;
    }

    .satoshi-calc__equality {
        margin: 0 8px;
    }
}

@media (min-width: 1280px) {

    .satoshi-calc {
        margin-bottom: 30px;
    }
}