.proship .textfield {
    font-family: "Roboto Condensed", sans-serif;
    position: relative;
}

.proship .textfield__textarea {
    box-shadow: 0 0 7px 0 gray;
}

.proship .textfield__textarea:focus {
    outline: none;
    box-shadow: 0 0 7px 0 red;
}

.proship .textfield__textarea:focus+.textfield__adornment {
    display: none;
}

.proship .textfield__input {
    border: 1px solid #8080804a;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    box-shadow: 0 0 2px 0 #8080804a;
    justify-content: space-between;
}

.proship .textfield__input--focused {
    box-shadow: 0 0 7px 0 red;
}

.proship .textfield__input-field {
    border: 0px;
    flex-grow: 1;
}

.proship .textfield__input-field:focus {
    outline: none;
}

.proship .textfield__input-field::-webkit-input-placeholder {
    font-family: "Roboto Condensed", sans-serif;
}

.proship .textfield__input-adornment {
    padding-left: 10px;
}

.proship .textfield__input-adornment button {
    padding: 0px;
    background: transparent;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proship .textfield__input:focus {
    outline: none;
    box-shadow: 0 0 7px 0 red;
}

.proship .textfield__input:focus+.textfield__adornment-placeholder {
    display: none;
}

.proship .textfield__adornment {
    position: absolute;
    top: 8px;
    left: 12px;
}

.proship .textfield__adornment-text {
    color: #5d5d5d;
}

.proship .textfield__adornment-placeholder {
    margin-left: 5px;
    color: #bdbdbd;
}

.proship .loader {
    width: 13px;
    height: 13px;
    border: 2px solid #F06292;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-right: 5px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}