.input {
    position: relative;
    margin-bottom: 5px;
    margin-left: 5px;
}

.input label {
    color: var(--dp-select-label);
    font-weight: 400;
    font-size: 18px;
    cursor: text;
    transform: translate(0, 0);
    top: 10px!important;
    position: absolute;
    left: 0;
}

.input input[type=date]+label,
.input.select label {
    top: 0px!important;
    font-size: 13px;
}

.input input[type=text] {
    z-index: 20;
    position: absolute;
    background: transparent;
}

.input input[type=text]+label {
    z-index: 10;
}

.input .help-block {
    font-size: 75%;
    margin-top: 3px;
    color: #999999;
}

.dp-input-div div.input.date,
.dp-input-div div.input.text {
    margin-left: 5px;
}

.dp-input-div div.input.text {
    padding-left: 2px;
}

.input input[type='date'],
.input input[type='text'],
.input input[type='email'],
.input input[type='password'],
.input input[type='number'],
.input textarea {
    width: 100%;
    border: 0;
    margin-top: 23px;
    border-radius: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    resize: none;
    color: #555555;
}

.input input[type='text']{
    margin-top: 1.6em;
}

.input input[type='date']:focus,
.input input[type='text']:focus,
.input input[type='email']:focus,
.input input[type='password']:focus,
.input input[type='number']:focus,
.input textarea:focus {
    outline: none;
    background: transparent;
}

.input input[type='email']:focus+label,
.input input[type='password']:focus+label,

.input input[type='email'][value]+label,
.input input[type='password'][value]+label {
    -webkit-transform: translate(-12.5%, -1.5em) scale(0.75, 0.75) !important;
    -ms-transform: translate(-12.5%, -1.5em) scale(0.75, 0.75) !important;
    transform: translate(-12.5%, -1em) scale(0.75, 0.75) !important;
}

.input input[type='date'][disabled],
.input input[type='text'][disabled],
.input input[type='email'][disabled],
.input input[type='password'][disabled],
.input input[type='number'][disabled],
.input textarea[disabled] {
    color: #cccccc;
    background-color: #ffffff;
    border-style: dashed;
}

.input input[type='date'][disabled]+label,
.input input[type='text'][disabled]+label,
.input input[type='email'][disabled]+label,
.input input[type='password'][disabled]+label,
.input input[type='number'][disabled]+label,
.input textarea[disabled]+label {
    color: #cccccc;
}

.input input[type='date']+label,
.input input[type='text']:focus+label,
.input input[type='text'][value]+label,
.input input[type='email']+label,
.input input[type='number']+label,
.input input[type='password']+label {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0!important;
    font-size: 13px;
    margin-bottom: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.input textarea+label {
    width: 100%;
    position: absolute;
    left: 0;
    top: 10px;
    margin-bottom: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.input input[type='date'].error,
.input input[type='text'].error,
.input input[type='email'].error,
.input input[type='password'].error,
.input input[type='number'].error,
.input textarea.error {
    border-color: #a94442;
    box-shadow: 0 1px 0 #a94442;
}

.input input[type='date'].error~.help-block,
.input input[type='text'].error~.help-block,
.input input[type='email'].error~.help-block,
.input input[type='password'].error~.help-block,
.input input[type='number'].error~.help-block,
.input textarea.error~.help-block {
    color: #a94442;
}

.input textarea:focus+label,
.input textarea[value]+label,
.input textarea.notempty+label {
    top: 0px;
    transition: top 0.5s;
}

.input input[type='checkbox'] {
    position: absolute;
    opacity: 0;
}

.input input[type='checkbox']+label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    padding-left: 30px;
}

.input input[type='checkbox']+label:before {
    position: absolute;
    left: 0;
    display: block;
    content: "";
    border: 2px solid #555555;
    height: 20px;
    width: 20px;
    border-radius: 2px;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input input[type='checkbox']+label:after {
    position: absolute;
    display: block;
    content: "";
    bottom: 5px;
    left: 7px;
    width: 6px;
    height: 13px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    box-sizing: border-box;
}

.input input[type='checkbox']:focus+label:before {
    box-shadow: 0 0 5px #337ab7;
}

.input input[type='checkbox']:checked+label:before {
    background: #337ab7;
    border-color: #337ab7;
}

.input input[type='checkbox']:checked+label:after {
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    opacity: 1;
}

.input input[type='checkbox'][disabled]+label {
    color: #cccccc;
}

.input input[type='checkbox'][disabled]+label:before {
    border-color: #cccccc;
}

.input input[type='checkbox'][disabled]:checked+label:before {
    background: #cccccc;
}

.input input[type='radio'] {
    position: absolute;
    opacity: 0;
}

.input input[type='radio']+label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    padding-left: 30px;
}

.input input[type='radio']+label:before,
.input input[type='radio']+label:after {
    position: absolute;
    left: 3px;
    bottom: 3px;
    display: block;
    content: "";
    border: 2px solid #555555;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-clip: padding-box;
}

.input input[type='radio']+label:after {
    background: #337ab7;
    border: 2px solid #ffffff;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.input input[type='radio']:focus+label:before {
    box-shadow: 0 0 5px #337ab7;
}

.input input[type='radio']:checked+label:before {
    border-color: #337ab7;
}

.input input[type='radio']:checked+label:after {
    -webkit-transform: scale(0.75, 0.75);
    -ms-transform: scale(0.75, 0.75);
    transform: scale(0.75, 0.75);
}

.input input[type='radio'][disabled]+label {
    color: #cccccc;
}

.input input[type='radio'][disabled]+label:before {
    border-color: #cccccc;
}

.input input[type='radio'][disabled]:checked+label:before,
.input input[type='radio'][disabled]:checked+label:after {
    background: #cccccc;
}

div.form-control.dp-input-div {
    padding: 0;
    margin: 0;
    height: 50px;
}


.dp-select-cust.input.select {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    height: 50px;
}

.dp-select-cust.input.select::after {
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: var(--dp-select-text);
    border-width: 4px;
    margin-top: -2px;
    z-index: 100;
    top: 25px;
    right: 7px;
    transition: 0.25s linear;
    transform: rotate(0deg);
}

.dp-select-cust.input.select.open::after {
    top: 22px;
    transform: rotate(-180deg);
}

.dp-select-cust.input.select label {
    position: absolute;
    font-size: 13px;
    font-weight: 400;
    color: var(--dp-select-label);
    left: 4px;
    top: 2px;
    margin-bottom: 0;
    background-color: transparent !important;
}

.dp-select-cust.input.select select {
    position: absolute;
    top: 0;
    height: 50px;
    padding: 18px 8px 0px;
    color: var(--dp-select-text);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    appearance: none;
    z-index: 10;
    cursor: pointer;
}

.dp-select-cust.input.select select:focus {
    padding-bottom: 0px;
    outline: none;
}

.dp-select-cust.input.select select[disabled] {
    color: #cccccc;
    background-color: #ffffff;
    border-bottom: 1px dashed #cccccc;
}

.dp-select-cust.input.select select[disabled]+label {
    color: #cccccc;
}

.input {
    padding-left: 15px;
    padding-right: 15px;
}

.dp-select-cust.input.select {
    padding-left: 0px;
    padding-right: 0px;
}

.input input[type=date]+label:before {
    content: "\F0EE";
    top: 24px;
    position: absolute;
    color: var(--dp-mainblue);
    font: normal normal normal 20px/1 "Material Design Icons";
}

.input input[type=date] {
    margin-left: 8px;
    margin-top: 23px;
}

.btn.btn-quickdate {
    background-color: var(--dp-quickdate-bg);
    color: var(--dp-quickdate-text);
    min-width: 78px;
    height: 40px;
    margin-top: 6px;
}

.btn.btn-quickdate:hover {
    background-color: var(--dp-icon-black);
    color: var(--dp-quickdate-text);
}
.form-control .input.textarea {
    margin-left: 10px;
    padding-left: 0px;
}