/*VALIDATION BEGIN*/
input.incorrect-field,
textarea.incorrect-field {
    border-color: #ff0000 !important;
}
input.incorrect-field::-webkit-input-placeholder,
textarea.incorrect-field::-webkit-input-placeholder {/* Chrome/Opera/Safari/Edge */
    color: #ff0000 !important;
}
input.incorrect-field::-ms-input-placeholder,
textarea.incorrect-field::-ms-input-placeholder { /* Microsoft Edge */
    color: #ff0000 !important;
}
input.incorrect-field:-ms-input-placeholder,
textarea.incorrect-field:-ms-input-placeholder {/* IE 10+ */
    color: #ff0000 !important;
}
input.incorrect-field::-moz-placeholder,
textarea.incorrect-field::-moz-placeholder {/* Firefox 19+ */
    opacity: 1; /*Firefox by default has an opacity object that usually is ideal to reset so it matches webkit*/
    color: #ff0000 !important;
}
input.incorrect-field:-moz-placeholder,
textarea.incorrect-field:-moz-placeholder {/* Firefox 18- */
    opacity: 1; /*Firefox by default has an opacity object that usually is ideal to reset so it matches webkit*/
    color: #ff0000 !important;
}
input.incorrect-field::placeholder,
textarea.incorrect-field::placeholder {
    color: #ff0000 !important;
}
/*VALIDATION END*/

/*HALF CIRCLE SPINNER BEGIN*/
.half-circle-spinner, .half-circle-spinner * {
    box-sizing: border-box;
}
.half-circle-spinner {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: relative;
}
.half-circle-spinner .circle {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: calc(60px / 10) solid transparent;
}
.half-circle-spinner .circle.circle-1 {
    border-top-color: #ff1d5e;
    animation: half-circle-spinner-animation 1s infinite;
}
.half-circle-spinner .circle.circle-2 {
    border-bottom-color: #ff1d5e;
    animation: half-circle-spinner-animation 1s infinite alternate;
}
@keyframes half-circle-spinner-animation {
    0% {
        transform: rotate(0deg);

    }
    100%{
        transform: rotate(360deg);
    }
}

/*FAST ORDER BEGIN*/
.half-circle-spinner-fast-order {
    position: absolute;
    width: 20px;
    height: 20px;
    display: inline-block;
    padding-top: 2px;
    margin-left: 8px;
}
.half-circle-spinner.half-circle-spinner-fast-order .circle {
    border: calc(30px / 10) solid transparent;
}
.half-circle-spinner.half-circle-spinner-fast-order .circle.circle-1 {
    border-top-color: #fff;
}
.half-circle-spinner.half-circle-spinner-fast-order .circle.circle-2 {
    border-bottom-color: #fff;
}
.btn-green:hover .half-circle-spinner.half-circle-spinner-fast-order .circle.circle-1 {
    border-top-color: #555;
}
.btn-green:hover .half-circle-spinner.half-circle-spinner-fast-order .circle.circle-2 {
    border-bottom-color: #555;
}
/*FAST ORDER END*/