/*
CUSTOM PLACEHOLDER
*/
.custom-input {
    position: relative;
}

/* Inputs */
.custom-input input,
.custom-input textarea {
    width: 100%;
    padding-top: 22px;   
    position: relative;
    z-index: 1;
    background: transparent;
}

.custom-placeholder {
    position: absolute;
    top: 26px;
    left: 0;
    padding: inherit;
	padding-top: 0;
    color: #6c757d;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 2;
	font-weight: inherit !important;
}

.custom-placeholder.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.custom-placeholder span {
    color: red !important;
}

.text-red{
    color: red !important;
}