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

/* Bootstrap - Overrides */
.form-control {
    border: none !important;
}
.form-control:focus {
    background: #f5f5f5 !important;
    border: none !important;
    box-shadow: none !important;

    transition: 0.3s;
}

/* Form - Inputs */
.form-field {
    background: #f6f6f4 !important;
    padding: 25px 15px !important;
}

/* Form - Auto Search */
.form-field__search {
    background: #f6f6f4 !important;
    padding: 25px 15px !important;
}
.form-field__search-btn {
	margin-top: -51px;
    margin-right: 5px;

	height: 50px;

	float: right;

	cursor: pointer;
}
    .form-field__search-btn:hover {
    	opacity: 0.6;
    }
    .form-field__search-btn img {
    	width: 25px;
        position: inherit;

        margin-top: 0 !important;

    }

.input-group > .form-control:not(:first-child) {
    background: #f6f6f4 !important;
    padding: 25px 15px !important;
}
.input-group-text {
    background: #f0efeb !important;
    border: none !important;
    border-right: 2px solid #dedede !important;
    border-radius: 2px 0 0 2px !important;

    width: 40px;
    height: 50px;
}

/* Form - Select */
.form-select {
    background: #f6f6f4 !important;
    padding: 14px 15px !important;

    color: #333 !important;

    display: block;
    width: 100%;

    border: none;

    -webkit-appearance: none
}

/* Form - Text */
.form-text {
    background: #f6f6f4 !important;
    padding: 15px !important;
}
.form-text-sm {
    background: #f6f6f4 !important;

    padding: 8px !important;

    font-size: 14px !important;
}

/* Form - Files */
input[type="file"] {
    display: none;
}

.btn-upload {
    background: #ebeae6;
    border: none;
    border-radius: 5px;

    color: #333333;
    font-size: 14px;
    font-weight: bold;

    padding: 6px 20px;

    cursor: pointer;
}
    .btn-upload:before {
        content: "Choose Image";
    }
    .btn-upload:hover {
        background: #ebeae6;
    }

.btn-upload__lg {
    background: #ebeae6;
    border: none;
    border-radius: 2px;

    color: #333333;
    font-size: 14px;
    font-weight: bold;

    padding: 6px 20px;

    cursor: pointer;
}
    .btn-upload__lg:before {
        content: "Choose Image";
    }
    .btn-upload__lg:hover {
        background: #ebeae6;
    }

.btn-upload__main {
    width: 100px;
    height: 100px;

    cursor: pointer;
}
    .btn-upload__main-img {
        width: 100px;
        height: 100px;

        cursor: pointer;

        object-fit: cover;
    }

.btn-upload__thumb {
    width: 80px;
    height: 80px;

    cursor: pointer;
}
    .btn-upload__thumb-img {
        width: 80px;
        height: 80px;

        cursor: pointer;

        object-fit: cover;
    }

.ui-autocomplete {
    display: none;

    background-color: #fff;

    border: none;
	border-radius: 5px;

    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;

    min-width: 160px;

    padding: 15px;
    margin: 0 0 10px 25px;

    list-style: none;

    z-index: 50;
}
.ui-menu-item {
    display: block;
    clear: both;

    color: #555555;
    font-weight: normal;

    text-decoration: none;

    padding: 10px 10px;

    line-height: 18px;

	cursor: pointer;
}
.ui-state-hover, .ui-state-active {
    color: #7D7D7D;
}
.ui-menu-sub-item {
    font-size: 14px;

    margin-left: 22px;
}
