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

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

    margin-bottom: 30px;
}
.form-control {
    border: none;
}
.form-control:focus {
    background: #f8f8f8;
    border: 1px solid #dee2e6;
    box-shadow: none !important;
}
.form-control-file {
    display: none;
}

::placeholder {
    color: #959595;
}

label {
    font-size: 16px;
    font-weight: 600;

    width: 100%;

    margin-bottom: 2px;
}

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

    position: absolute;
    right: 0;
    top: 2px;
}

.form .is-invalid {
    background-image: none;
    border: 1px solid #dee2e6 !important;

    padding-right: 15px;
}

#totalError {
    font-size: 16px;
}

/* Form - Inputs */
.form-field {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;

    padding: 0 15px;

    width: 100%;
    height: 50px;
}

/* Form - Select */
.form-select {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;

    font-weight: 500;

    padding: 0 15px;

    width: 100%;
    height: 50px;

    cursor: pointer;
}

/* Form - Text */
.form-text {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;

    padding: 15px;

    width: 100%;
    height: 125px !important;
}

/* Form - File */
.form-file {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;

    padding: 0 10px 0 0;

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

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

    padding: 0 20px;
    margin: 4px 10px 4px 4px;

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

	cursor: pointer;
}

/* Form - Images */
.form-image {
    position: relative;

    display: inline-block;
}
    .form-image label {
        width: auto;
    }
    .form-image img {
        width: 150px;
        height: 150px;

        object-fit: cover;

        cursor: pointer;
    }
    .form-image .deleteImage, .form-image .emptyImage {
        background: #000;
        border-radius: 0 0 4px 0;

        font-size: 12px;
        font-weight: 500;
        color: #fff;
        text-decoration: none;

        position: absolute;
        left: 0;

        padding: 3px 10px;
    }
    .form-image .btn-select {
        background: #fff;
        box-shadow: 0 5px 8px #e9e9e9 !important;
        border: 1px solid #eaedf2;
        border-radius: 12px;

        font-size: 28px;

        width: 150px;
        height: 150px;

        display: table-cell;
        vertical-align: middle;
        text-align: center;

        cursor: pointer;

        transition: 0.2s;
    }
        .form-image .btn-select:hover {
            color: #d31722;

            transition: 0.2s;
        }

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

    padding: 0 40px 0 20px;
    margin: 0;

    width: 100%;
    height: 44px;
}
    .form-search__btn {
        background: none;
        border: none;

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

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

        width: 35px;
        height: 35px;

        float: right;

        transition: 0.2s;
    }
        .form-search:focus {
            background: #eeeeee;
            border: none;
        }
        .form-search__btn:hover {
            color: #ba181b;

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

        .form-search-small .form-search {
            border-radius: 4px;

            font-size: 14px;

            height: 37px;

            padding: 0 30px 0 15px
        }
            .form-search-small .form-search__btn {
                margin-top: -37px;
                margin-right: 0;
            }

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

    display: block;
    padding-left: 35px;
    margin: 0 0 18px 0;

    width: auto;
    height: auto;

    user-select: none;
    cursor: pointer;
}
    .checkbox-wrapper .label {
        display: inline-block;
        padding-top: 3px;
    }
    .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: #d31722;

        transition: 0.1s;
    }
    .checkbox-wrapper input:checked ~ .checkmark {
        background-color: #d31722;
    }
    .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;

        top: 0;
        left: 4px;
    }
