.error-hide {
    display: none;
}

#regform .profile-form{
    display: none;
}

.nmo-click {
    font-size: 1.1rem !important;
    font-weight: bolder !important;
    line-height: 1.2;
}
.nmo-click:before {
    width: 1rem !important;
    height: 1rem !important;
    left: 0 !important;
    top: 1px !important;
}
.form-check-input:checked+.nmo-click:after {
    left: 1px !important;
    top: 0 !important;
}

#regform .help-tip {
    position: absolute;
    top: -5px;
    left: 100%;
    margin-left: 5px;
    cursor: default;
}

#regform .help-tip:hover p, #regform p:hover {
    display: block;
    transform-origin: 100% 0%;

    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;

}

#regform .help-tip p {
    display: none;
    text-align: left;
    background-color: #1E2021;
    padding: 10px;
    width: auto;
    width: 190px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    left: 2px;
    color: #FFF;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    font-size: 11px;
    z-index: 10;
}

#regform .help-tip a {
    color: white;
    text-decoration: underline;
}

#regform .help-tip p:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-bottom-color: #1E2021;
    left: 0;
    top: -10px;
}

#regform .help-tip p:after {
    width: 100%;
    height: 40px;
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    100% {
        opacity: 100%;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}
