.pay_your_price_input {
    margin-left: 10px;
}


.pay_your_price_loader {
    width: 28px;
    height: 28px;
    border: 5px solid #859D69;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pay_your_select {
    position: relative;
    display: inline-block;
    &:before {
        content: '';
        height: (36 - 5) + px;
        position: absolute;
        right: 7px;
        top: 3px;
        width: 22px;
        background: #fff;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        pointer-events: none;
        display: block;
    }
    &:after {
        content: " ";
        position: absolute;
        right: 15px;
        top: 46%;
        margin-top: -3px;
        z-index: 2;
        pointer-events: none;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6.9px 4px 0 4px;
        border-color: #aaa transparent transparent transparent;
        pointer-events: none;
    }

    .pay_your_price {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding: 0 30px 0 10px;
        border: 1px solid #e0e0e0;
        border-radius: 3px;
        line-height: 36 + px;
        height: 36 + px;
        background: #fff;
        margin: 0 5px 5px 0;
    }
}