div .form-horizontal .form-group {
    margin-right: 0;
    margin-left: 0;
}

.mc-form-group {
    position: relative;
    margin-bottom: 0.3rem;
    margin-top: 1.7rem;
}

.mc-form-group input,
.mc-form-group select {
    outline: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.mc-form-group input:focus,
.mc-form-group select:focus {
    border-color: rgba(60, 105, 155, 1);
}

.mc-form-control-placeholder {
    position: absolute;
    top: 5px;
    left: 2px;
    padding: 2px 25px 0 6px;
    transition: all 200ms;
    /* opacity: 0.8; */
    background-color: white;
    border-radius: 15px;
    color: rgba(112, 130, 141, 0.8);
}

.placeholder-input-group {
    left: 35px !important;
    z-index: 4 !important;
}

.mc-form-control:focus + .mc-form-control-placeholder,
.mc-form-control.mc-dirty + .mc-form-control-placeholder,
.mc-form-control.mc-form-control-invalid + .mc-form-control-placeholder {
    font-size: 14px;
    -webkit-transform: translate3d(0, -60%, 0);
    transform: translate3d(0, -80%, 0);
    opacity: 1;
    color: rgba(60, 105, 155, 1);
    padding: 0px 2px 0 2px;
    margin-left: 4px;
    margin-right: 4px;
    background-color: white;
    border-radius: 8px;
}

form.ng-submitted .mc-form-control.mc-form-control-invalid {
    border-color: #da0000 !important;
    background-color: white !important;
}


form.ng-submitted .mc-form-control.mc-form-control-invalid + .mc-form-control-placeholder {
    color: #da0000 !important;
}

.mc-form-control.mc-form-control-valid {
    border-color: rgba(46, 133, 64, 1) !important;
    background-color: white !important;
}

.mc-form-control.mc-form-control-valid:disabled {
    background-color: #eee !important;
}

.mc-form-control.mc-form-control-valid + .mc-form-control-placeholder {
    color: rgba(46, 133, 64, 1) !important;
}

.text-red {
    color: #da0000;
}

.text-green {
    color: rgba(46, 133, 64, 1);
}

.mc-form-control-icon {
    position: absolute;
    top: 10px;
    right: 8px;
}

.select.mc-form-group > .mc-form-control-icon {
    position: absolute;
    top: 10px;
    right: 28px;
}

.mc-form-control-tooltip-wrapper {
    position: absolute;
    bottom: 55px;
    bottom: calc(100% + 20px);
    bottom: -webkit-calc(100% + 20px);
    bottom: -moz-calc(100% + 20px);
    width: 100%;
}

.mc-form-control-tooltip {
    position: relative;
    padding: 5px;
    color: white;
    border-radius: 4px;
    background: rgba(60, 105, 155, 1);
}

.mc-form-control-tooltip:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-top-color: rgba(60, 105, 155, 1);
    border-width: 10px;
    margin-left: -10px;
}
