@charset "utf-8";
/* CSS Document */

/* Bootstrap - Overrides */
.form-group {
    position: relative;

    margin-bottom: 30px;
}
.form-control {
    border: none;
}
.form-control:focus {
    background: #f0f2f5;

    border: none;
    box-shadow: none;
}
.form-control-file {
    display: none;
}

::placeholder {
    color: #959595;
}

/* Validation */
.form .required {
    font-size: 18px;
    font-weight: 700;
    color: #ce4257;

    position: absolute;
    right: 0;
    top: 2px;
}
.form .is-invalid {
    background-image: none;
}
.form .errorMsg {
    position: absolute;

    color: #ce4257;
    font-size: 16px;
    text-align: right;

    width: 100%;

    margin: 0;
}

/* Form - Inputs */
.form-field {
    background: #f6f6f4;

    border: none;
    border-radius: 2px;

    padding: 15px;
}

/* Form - Select */
.form-select {
    background: #f6f6f4;

    border: none;
    border-radius: 2px;

    padding: 15px;

    cursor: pointer;
}

/* Form - Text */
.form-text {
    background: #f6f6f4;

    border: none;
    border-radius: 2px;

    padding: 15px;

    height: 125px;
}

/* Form - File */
.form-file {
    background: #f3f3f3;
    border: none;
    border-radius: 4px;

    padding: 0 10px 0 0;

    width: 100%;
    height: 50px;
}
.btn-file {
    background: #f27d0a;
	border-radius: 4px 0 0 4px;

	color: #fff;

	font-size: 16px;
    font-weight: 500;

    padding: 0 20px;
    margin-right: 15px;

    width: auto;
    height: 50px;
    line-height: 50px;

	cursor: pointer;
}

/* Form - Search */
.form-search {
    background: #f3f3f3;
    border: none;
    border-radius: 4px 25px 25px 4px;

    padding: 0 40px 0 15px;
    margin: 0;

    width: 100%;
    height: 50px;
}
    .form-search__btn {
        background: #f27d0a;
        border: none;
        border-radius: 50%;

        position: relative;
        margin-top: -42px;
        margin-right: 10px;
        z-index: 20;

        font-size: 16px;
        color: #fff;

        width: 35px;
        height: 35px;

        float: right;

        transition: 0.2s;
    }
        .form-search__btn:hover {
            background: #d56b04;
            color: #fff;

            transition: 0.2s;
        }
        .form-search__btn i {
            position: relative;
            top: -1px;
        }

/* Form - Checkbox */
.checkbox-wrapper {
    position: relative;
    top: 4px;

    display: block;
    padding-left: 30px;
    margin: 0 10px 18px 0;

    width: auto;
    height: auto;

    user-select: none;
    cursor: pointer;
}
    .checkbox-wrapper .label {
        display: inline-block;
        padding-top: 2px;
    }
    .checkbox-wrapper input {
        position: absolute;

        opacity: 0;

        cursor: pointer;

        height: 0;
        width: 0;
    }

.checkmark {
    background-color: #f3f3f3;
    border-radius: 4px;

    position: absolute;
    top: 5px;
    left: 0;

    height: 20px;
    width: 20px;

    transition: 0.1s;
}
    .checkbox-wrapper:hover input ~ .checkmark {
        background-color: #44AC8E;

        transition: 0.1s;
    }
    .checkbox-wrapper input:checked ~ .checkmark {
        background-color: #44AC8E;
    }
    .checkbox-wrapper input:checked ~ .checkmark:after {
        display: block;
    }
    .checkbox-wrapper .checkmark:after {
        content: "\f00c";

        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 14px;
        color: #fff;

        position: absolute;
        display: none;

        left: 4px;
        top: 0px;
    }
