.form-control{
    margin: 5px;
}

textarea:focus, input:focus{
    outline: none;
}

.form-control input[type=text],
.form-control input[type=number],
.form-control input[type=password],
.form-control input[type=email]{
    width: 100%;
    height: 31px;
    border: 1px solid #BFBFBF;
    background-color: #ffffff;
    padding: 0px 15px 0px 10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
}

.form-control select{
    width: 100%;
    height: 31px;
    border: 1px solid #BFBFBF;
    background-color: #ffffff;
    padding: 0px 10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
}

.form-control textarea{
    width: 100%;
    min-height: 100px;
    border: 1px solid #BFBFBF;
    background-color: #ffffff;
    padding: 10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
    line-height: 1.4;
}

.form-control label input {
    margin-right: 10px;
}

.toggle-advance-search{
    cursor: pointer;
}


.select2-container .select2-search--inline .select2-search__field{
    margin-top:7px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top:6px !important;
}

.select2-container--default .select2-selection--multiple {
    padding-left:5px;
    border-radius: 0px !important;
}

.form-control.error input{
    color:#FF0000;
    border:1px solid #FF0000;
}

.form-error-message{
    color:#FF0000;
}

.form-success-message{
    color:green;
}

.g-recaptcha{
    display: inline-block;
}

.required{
    position: relative;
}

.required::after{
    position: absolute;
    right: 15px;
    top:15px;
    z-index: 100;
    content:" *";
    color:#FF0000;
    font-size: 35px;
}

.required.select::after{
    right: 20px;
}

span.required-field{
    color:#FF0000;
    font-size: 35px;
    height: 15px;
    display: inline-block;
    overflow: hidden;
    padding-top: 5px;
    margin-left:5px;
}


.category-selector-path {
    font-weight: 700;
    margin: 0px 0px 15px 0px;
    font-size: 15px;
}

.category-selector-list div{
    margin-bottom: 15px;
}

.category-selector-list div a{
   font-weight: 700;
    color:#FF0000;
}

.category-selector-categories {
    background: #e1f0fd;
    padding: 5px 20px 20px 20px;
    border-radius: 20px;
}

.inactive{
    background: #e1f0fd !important;
    border: 1px solid #e1f0fd !important;
    cursor: default;
}

.checkboxlist-margin input {
    margin-right: 10px;
    margin-top:5px;
}


/* Hide the browser's default checkbox */
.checkbox-control input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* On mouse-over, add a grey background color */
.checkbox-control:hover input ~ .checkmark,
.radiobutton-control:hover input ~ .checkmark {
    background-color: #f5f5f5;
}

/* Style the checkmark/indicator */
.checkbox-control .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* The container */
.radiobutton-control,
.checkbox-control{
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    padding-top: 4px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radiobutton-control input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #e1f0fd;
    border-radius: 50%;
}

/* When the radio button is checked, add a blue background */
.radiobutton-control input:checked ~ .checkmark,
.checkbox-control input:checked ~ .checkmark{
    background-color: #0095db;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiobutton-control input:checked ~ .checkmark:after,
.checkbox-control input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radiobutton-control .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}