
html {
    font-family: 'OpenSans-Regular';
}

.form-check-muted.form-check label input[type="checkbox"] + .input-helper:before, .form-check-muted.form-check label input[type="radio"] + .input-helper:before {
    border-color: #5b616b;
}
.bottom_logo {
    width: 70px;
}
.formtxtsze {
    padding: 15px 15px 15px 50px !important;
}

.form-check .form-check-label input[type="checkbox"] + .input-helper:before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border: solid #0090e7;
    border-width: 2px;
    -webkit-transition: all;
    -moz-transition: all;
    -ms-transition: all;
    -o-transition: all;
    transition: all;
    transition-duration: 0s;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    position: absolute;
    top: 2px;
    left: 0;
}

.form-check .form-check-label input[type="checkbox"] + .input-helper:before, .form-check .form-check-label input[type="checkbox"] + .input-helper:after {
    position: absolute;
    top: 2px;
    left: 0;
}

.form-check .form-check-label input {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .form-check .form-check-label input[type="checkbox"]:checked + .input-helper:after {
        width: 18px;
        opacity: 1;
        line-height: 18px;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        color: black;
    }

    .form-check .form-check-label input[type="checkbox"] + .input-helper:after {
        -webkit-transition: all;
        -moz-transition: all;
        -ms-transition: all;
        -o-transition: all;
        transition: all;
        transition-duration: 0s;
        -webkit-transition-duration: 250ms;
        transition-duration: 250ms;
        font-family: 'Font Awesome 5 Free';
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        content: '\f00c';
        font-size: 0.875rem;
        font-weight: bold;
        color: #ffffff;
        top: 1px;
    }



.button-cust {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    padding: 29px 10px;
    background-color: #FE7C02;
    border: none;
    border-radius: 3px;
    color: white;
    overflow: hidden;
    top: -79px;
    float: right;
}

    .button-cust:hover {
        color: #FE7C02;
        background-color: #fff;
        border: 1px solid #FE7C02;
    }

    .button-cust:focus {
        outline: 1px solid #fe7c02;
    }

    .button-cust:before {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #fe7c0275;
    }

    .button-cust span {
        position: absolute;
        line-height: 0;
    }

        .button-cust span i {
            transform-origin: center center;
        }

        .button-cust span:nth-of-type(1) {
            top: 50%;
            transform: translateY(-50%);
        }

        .button-cust span:nth-of-type(2) {
            top: 100%;
            transform: translateY(0%);
            font-size: 24px;
            padding-top: 2px;
        }

        .button-cust span:nth-of-type(3) {
            display: none;
        }

    .button-cust.active {
        background-color: #fe7c0275;
    }

        .button-cust.active:before {
            width: 100%;
            transition: width 3s linear;
        }

        .button-cust.active span:nth-of-type(1) {
            top: -100%;
            transform: translateY(-50%);
        }

        .button-cust.active span:nth-of-type(2) {
            top: 50%;
            transform: translateY(-50%);
        }

            .button-cust.active span:nth-of-type(2) i {
                animation: loading 500ms linear infinite;
            }

        .button-cust.active span:nth-of-type(3) {
            display: none;
        }

    .button-cust.finished {
        background-color: #FE7C02;
    }

        .button-cust.finished .submit {
            display: none;
        }

        .button-cust.finished .loading {
            display: none;
        }

        .button-cust.finished .check {
            display: block !important;
            font-size: 24px;
            animation: scale 0.5s linear;
        }

            .button-cust.finished .check i {
                transform-origin: center center;
            }
.form-control:focus { 
    border-color: #fe7c02; 
    box-shadow: 0 0 0 0.2rem rgb(254 124 2 / 14%);
}

.fa, .fas {
    font-weight: 900;
}

.fa, .far, .fas {
    font-family: "Font Awesome 5 Free";
}

.fa, .fab, .fad, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

@media(max-width:991px) {
    .button-cust {
        padding: 28px 10px;
        top: -75px;
    }
}
@media(max-width:480px) { 
    .button-cust { 
        padding: 27px 10px; 
        top: -74px; 
    }
}

.button-cust.finished:hover {
    background-color: #fff !important;
    color: #FE7C02;
}