.indacoinDepositWrapper {
    font-family: inherit;
    padding: 10px 0 15px 0;
}

.indacoinDepositWrapper .header {
    display: flex;
}

.indacoinDepositWrapper .header .logoContainer {
    width: 150px;
}

.indacoinDepositWrapper .header .logoContainer img {
    display: block;
    width: 100%;
}

.indacoinDepositWrapper .header  .text {
    display: flex;
    flex-direction: column;
    margin-left: 25px;
    color: #fff;
}

.indacoinDepositWrapper .header  .text .first {
    font-size: 18px;
    font-weight: 500;
}

.indacoinDepositWrapper .header  .text .second {
    font-size: 14px;
}

.indacoinDepositWrapper .content .row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.indacoinDepositWrapper .content .row .amount .input input {
    padding: 0 74px 0 25px;
}

.indacoinDepositWrapper .content .row .amount .input img {
    height: 40px;
    width: 40px;
    top: calc((100% - 40px) / 2);
}

.indacoinDepositWrapper .content .row .amount {
    width: 48%;
}
.indacoinDepositWrapper .content .row .fiat {
    width: 48%;
}

.indacoinDepositWrapper .content .row .fiat .input input {
    padding: 0 90px 0 25px;
}

.indacoinDepositWrapper .inputContainer .input {
    position: relative;
}

.indacoinDepositWrapper .inputContainer .input img {
    position: absolute;
    right: 30px;
    top: 0;
    width: 24px;
    display: block;
    height: 100%;
}

.indacoinDepositWrapper .content .row input {
    width: 100%;
    transition: color .1s ease-in-out;
    outline: none;
    background-color: #1e1151;
    color: #9690af;
    height: 64px;
    line-height: 64px;
    padding: 0 60px 0 25px;
    -webkit-border-radius: 35px;
    border: 0;
    font-size: 15px;
    color: #fff;
}

.indacoinDepositWrapper .content .row select:focus {
    border-color: #a5a5a5;
}
.indacoinDepositWrapper .content .row select:hover:not(:focus) {
    border-color: #ccc;
}
.indacoinDepositWrapper .content .fiat select {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    border: 0;
    cursor: pointer;
    outline: none;
    background: #332274;
    color: #fff;
    padding-left: 16px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.indacoinDepositWrapper .content .row .email {
    width: 100%;
}

.indacoinDepositWrapper .content .row .wallet {
    width: 100%;
}

.indacoinDepositWrapper .buttonContainer {
    margin-top: 25px;
    text-align: center;
}

.indacoinDepositWrapper .buttonContainer button:hover:not(:disabled) {
    background: #0088fe;
    background: linear-gradient(to right, #0088fe 0%,#00ede2 100%);
}

.indacoinDepositWrapper .buttonContainer button:disabled {
    cursor: default;
    opacity: .7;
}

.indacoinDepositWrapper .buttonContainer button {
    outline: none;
    border: 0 ;
    border-radius: 25px;
    padding: 10px 50px;
    line-height: normal;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    user-select: none;
    background: #00ede2;
    background: linear-gradient(to right, #00ede2 0%,#0088fe 100%);
    text-transform: uppercase;
    color: #120641;
    width: 190px;
}

.indacoinDepositWrapper .error {
    display: block;
    color: red;
    margin-top: 5px;
    font-size: 14px;
    margin-left: 25px;
}


.indacoinDepositWrapper .mark {
    display: block;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .2px;
    margin-top: 4px;
    color: #fff;
    margin-left: 25px;
}

.indacoinDepositWrapper .rate {
    display: block;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .2px;
    margin-top: 4px;
    color: rgba(0,0,0,.54);
    text-align: right;
}

    /** MOBILE STYLES **/

.indacoinDepositWrapper.mobile .header {
    flex-direction: column;
}

.indacoinDepositWrapper.mobile .header .text {
    flex-direction: column;
    margin-left: 0;
    margin-top: 10px
}

.indacoinDepositWrapper.mobile .row {
    flex-direction: column;
    justify-content: initial;
}

.indacoinDepositWrapper.mobile .content .row .amount {
    width: 100%;
    margin-top: 15px;
}
.indacoinDepositWrapper.mobile .content .row .fiat {
    width: 100%;
}

.indacoinDepositWrapper.mobile .content .row .crypto {
    width: 100%;
    margin-top: 15px;
}

.indacoinDepositWrapper .buttonContainer button.load .text {
    display: none;
}

.indacoinDepositWrapper .buttonContainer button.load .lds-ellipsis {
    display: inline-block;
}

.lds-ellipsis {
    display: none;
    position: relative;
    width: 80px;
    height: 10px;
}
.lds-ellipsis div {
    position: absolute;
    top: 0px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
