@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;
}
.form-control-file {
    display: none;
}

.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;

    width: 100%;

    margin: 0;
}

.form .input-group-text {
    width: 45px;

    padding: 0 0 0 14px;
}

::placeholder {
    color: #959595;
}

.form label {
    font-weight: 600;

    width: 100%;

    margin-bottom: 2px;
}

.form input::-webkit-outer-spin-button,
.form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

    padding: 0 15px;

    width: 100%;
    height: 50px;

    cursor: pointer;

    appearance: none;
}

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

    padding: 15px;

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

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

    padding: 0 45px 0 15px;
    margin: 0;

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

        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: #510783;

            color: #fff;

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

.form-search-small .form-search {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}
    .form-search-small .form-search__btn {
        background: #fff;

        color: #dee2e6;
    }
    .form-search-small .form-search__btn:hover {
        background: #fff;

        color: #dee2e6;
    }

.form-file {
    background: #f0f2f5;
    border: none;
    border-radius: 4px;

    padding: 0 10px 0 0;

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

	color: #fff;

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

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

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

	cursor: pointer;
}

.form-image {
    position: relative;

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

        object-fit: cover;
        transform: translate3d(0, 0, 1px);

        cursor: pointer;
    }
    .form-image .deleteImage, .form-image .emptyImage {
        background: #43525b;
        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 - 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: #f0f2f5;
    border-radius: 4px;

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

    height: 20px;
    width: 20px;

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

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

/* */
.options-wrapper {
    margin-right: 20px;
}

.options-wrapper > [type=checkbox] {
    position: absolute;

    width: 0;
    height: 0;

    opacity: 0;
}
.options-wrapper > [type=checkbox] + img {
    width: 75px;
    height: auto;

    filter: grayscale(1);
    opacity: 0.5;

    cursor: pointer;
}
    .options-container .options-wrapper > [type=checkbox] + img {
        width: 55px;
    }

.options-wrapper > [type=checkbox]:checked + img {
    filter: grayscale(0);
    opacity: 1;
}

/* Radio */
.radio-wrapper {
    margin-right: 20px;
}

.radio-wrapper > [type=radio] {
    position: absolute;

    width: 0;
    height: 0;

    opacity: 0;
}
.radio-wrapper > [type=radio] + img {
    width: 75px;
    height: auto;

    filter: grayscale(1);
    opacity: 0.5;

    cursor: pointer;
}
    .options-container .radio-wrapper > [type=radio] + img {
        width: 55px;
    }

.radio-wrapper > [type=radio]:checked + img {
    filter: grayscale(0);
    opacity: 1;
}
