/* Your custom styles */
.CenterForm {
    margin: auto;
    display: block;
    max-width: 400px;

}

.CenterFlex {
    height: 80vh;
    vertical-align: middle;
    display: table-cell;
    width: 100vw;
}

.deep-grey-text {
    text-align: center;
}

.promoted-input-checkbox {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.promoted-checkbox input:checked + label > svg {
    height: 24px;
    -webkit-animation: draw-checkbox ease-in-out 0.2s forwards;
    animation: draw-checkbox ease-in-out 0.2s forwards;
}

.promoted-checkbox label:active::after {
    background-color: #e6e6e6;
}

.promoted-checkbox label {
    color: #4f4f4f;
    line-height: 20px;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: bold;
}

.promoted-checkbox label:after {
    content: "";
    height: 20px;
    width: 20px;
    margin-right: 1rem;
    float: left;
    border: 2px solid #b9c8c8;
    border-radius: 3px;
    -webkit-transition: 0.15s all ease-out;
    transition: 0.15s all ease-out;
}

.promoted-checkbox svg {
    stroke: #00c851;
    stroke-width: 4px;
    height: 0;
    width: 12px;
    position: absolute;
    left: 4px;
    top: -3px;
    stroke-dasharray: 33;
}

@-webkit-keyframes draw-checkbox {
    0% {
        stroke-dashoffset: 33;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-checkbox {
    0% {
        stroke-dashoffset: 33;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.relative {
    position: relative !important;
}

.promoted-checkbox {
    position: absolute;
    top: 34px;
    left: 0;
}

.grey.lighten-2 {
    background-color: #0B375B !important;
    color: #fff !important;
}

.alerts a {

    display: block;
}

.md-form select option {
    outline: none;
}

.md-form select {
    width: 100%;
    border-bottom: 1px solid #ced4da;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 10px 0;
    outline: none;
    color: #757575;
}