.form-group input {
    /* background-color: #607D8B; */
    /* color: #ffffff; */
    /* border: 0px; */
}

.form-group input:focus {
    /* background-color: #7f97a2; */
    /* color: #ffffff; */
    /* border: 0px; */
}

.form-group input:focus::placeholder {
    /* background-color: #7f97a2; */
    /* color: #ffffff; */
    /* border: 0px; */
}

.form-group input::placeholder {
    /* background-color: #607D8B; */
    /* border: 0px; */
    color: rgba(255, 255, 255, 0.5);
}

select .select-selected {
    background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
select .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.form-group select .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.form-group select .select-items div,
.form-group select .select-selected {
    /* color: #ffffff; */
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.form-group select .select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.form-group select .select-hide {
    display: none;
}

.form-group select .select-items div:hover,
.form-group select .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Retorno validacao */
.invalid-feedback {
    color: yellow;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: yellow;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='yellow' viewBox='-2 -2 7 7'%3e%3cpath stroke='yellow' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
}
/* Ajustando input file e selects */
.form-group input[type='file'] {
    display: none
}
#showImageInput label {
    width: 100%;
    display: inline-block;
    padding: .375rem .75rem;
    cursor: pointer;
    /* background-color: #607D8B; */
    border-radius: .25rem;
    margin-top: 30px;
    margin-bottom: 0;
    line-height: 1.7;
}
#showImageInput label .file-ok {
    float: right;
    margin-top: 5px;
    color: #6cc16c;
}
.form-group select,
.select2-container--default .select2-selection--single {
    /* background-color: #607D8B; */
    /* border: none; */
    /* color: #fff; */
}
/* Select 2 */
.select2-container--default .select2-selection--single {
    /* background-color: #607D8B !important; */
    /* border: none !important; */
    height: calc(1.5em + .75rem + 2px) !important;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    /* color: #fff !important; */
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent !important;
    margin-top: -2px !important;
    top: 70% !important;
}
