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

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

    margin-bottom: 30px;
}
.form-control {
    border: none;

    font-weight: 500;
    color: #000;
}
.form-control:focus {
    box-shadow: none;
}
.form-control-file {
    display: none;
}
.input-group-text {
    background: #fff;
    border: 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: #ab3b45;
    font-size: 14px;
    text-align: right;

    width: 100%;

    margin: 0;
}
.form .is-invalid {
    border-color: #ab3b45;
}
.form .form-alert {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 3px;

    color: #721c24;

    padding: 8px 10px;
}

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

    border: none;
    border-radius: 4px;

    padding: 0 15px;

    width: 100%;
    height: 50px;
}

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

    border: none;
    border-radius: 4px;

    padding: 0 15px;

    width: 100%;
    height: 50px;

    cursor: pointer;
}

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

    border: none;
    border-radius: 4px;

    padding: 15px;

    height: 125px !important;
}

/* Form - File */
.form-file {
    position: relative;
}
.form-file .btn-select {
    background: #fff;
    border-radius: 4px;

    font-size: 14px;
    font-weight: 500;
    color: #000;

    width: 130px;
    height: 130px;

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

    cursor: pointer;

    transition: 0.2s;
}
    .form-file .btn-select:hover {
        background: #f1f1f1;

        color: #333333;
        text-decoration: underline;

        transition: 0.2s;
    }
    .form-file label {
        width: auto;
    }
    .form-file img {
        width: 130px;
        height: 130px;

        object-fit: cover;
    	overflow-clip-margin: unset;
    }
    .form-file .container-alert {
        position: absolute;
        top: 0;

        font-size: 14px;

        width: 100%;

        padding: 4px 0;
    }
    .form-file.img-overlay label {
        height: 136px;
    }
    .form-file.img-overlay::after {
        content: "Delete Image";

        color: #fff;
        font-weight: 500;
        font-size: 14px;

        background-color: rgba(18, 18, 18, 0.5);
        border-radius: 0;

        position: absolute;
    	top: 0;
    	left: 0;

    	display: flex;
        align-items: center;
        justify-content: center;

    	width: 130px;
    	height: 130px;

        cursor: pointer;
    }
    .form-file.img-overlay:hover::after {
        text-decoration: underline;

        transition: 0.2s;
    }

/* 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;
        }

/* */
.background-img-wrapper .form-search {
    background: #d1394b;
    border-radius: 30px;

    font-size: 18px;
    font-weight: 500;
    color: #fff;

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

    width: 100%;
    height: 62px;
}
    .background-img-wrapper .form-search::placeholder {
        color: #fff;
    }
    .background-img-wrapper .form-search__btn {
        background: none;

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

        margin-top: -48px;
    }
    .background-img-wrapper .form-search__btn:hover {
        color: #56410a;
    }

/* 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: 3px;
    }
    .checkbox-wrapper input {
        position: absolute;

        opacity: 0;

        cursor: pointer;

        height: 0;
        width: 0;
    }

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

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

        height: 20px;
        width: 20px;

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

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