:focus {
    outline: 0 !important;
}

.input-no-bg {
    border: 0 !important;
    border-bottom: 2px solid #ccc !important;
    border-radius: 0% !important;
    transition: all 0.3s !important;
}

.input-no-bg:hover, .input-no-bg:focus {
    border-bottom: 2px solid #417ee8 !important;
}

.input-no-bg-blue {
    border-bottom: 2px solid #417ee8 !important;
}

.input-no-bg-invalid {
    border-bottom: 2px solid #e84141 !important;
}

.btn-success {
    background-color: #417ee8 !important;
    border: 1px solid transparent !important;
    transition: all 0.3s !important;
}

.btn-success:hover, .btn-success:focus {
    background-color: #38c172 !important;
}

.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-label-group > input,
.form-label-group > label {
    height: 3.125rem;
    padding: .75rem;
}

.form-label-group > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: auto;
    margin-bottom: 0; /* Override default `<label>` margin */
    margin-left: .9rem;
    line-height: 1.5;
    color: #999;
    pointer-events: none;
    cursor: text; /* Match the input under the label */
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
    color: transparent;
}

.form-label-group input:-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-moz-placeholder {
    color: transparent;
}

.form-label-group input::placeholder {
    color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
    padding-bottom: .25rem;
}

.form-label-group input:not(:placeholder-shown) ~ label, .form-label-group input:focus ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-right: .25rem;
    font-size: 12px;
    color: #999;
}

.input-no-bg {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

:focus {
    box-shadow: 0 0 0 0 rgba(52, 144, 220, 0.25) !important;
    outline: 0 !important;
}

.form-label-group:focus > label {
    color: transparent !important;
}

img.img-popup {
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

img.img-popup:hover, img.img-popup:focus {
    opacity: 0.5;
}

.modal-custom-w-1000 {
    max-width: 1000px;
    margin-top: 10px;
}

.cursor-pointer {
    cursor: pointer !important;
}

.m-r-minus-100 {
    margin-right: -100px !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
}

.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    -ms-animation-name: zoom;
    -ms-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from { -webkit-transform: scale(0); }
    to { -webkit-transform: scale(1); }
}

@keyframes zoom {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f194;
    font-size: 40px;
    font-weight: bold;
    border: none !important;
    transition: 0.3s ease;
}

.close:hover, .close:focus {
    color: rgb(230, 230, 230);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

@supports (-ms-ime-align: auto) {
    .form-label-group > label {
        display: none;
    }
    .form-label-group input::-ms-input-placeholder {
        color: #777;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-label-group > label {
        display: none;
    }
    .form-label-group input:-ms-input-placeholder {
        color: #777;
    }
}