html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

a {
    text-decoration: none;
    cursor:pointer;
}

.text-danger-reg-log {
    color: #dc3545 !important;
    font-size: smaller;
}

a.text-danger-reg-log:hover, a.text-danger-reg-log:focus {
    color: #a71d2a !important;
}


.searchChild {
    align-self: center;
    text-align: center;
    width: 50%;
    margin: 5px 0;
    /*padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);*/
}

.form-control-custom {
    display: block;
    width: 100%;
    padding: 3px;
    cursor: pointer;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control-custom-checkbox {
    width: auto;
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    margin: 3px 3px 3px 4px;
    padding: initial;
    border: initial;
}


.input-file {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    .input-file span {
        border: 1px solid #ccc;
        border-radius: 10px;
        padding: 3px 10px;
        position: relative;
        display: inline-block;
        cursor: pointer;
        outline: none;
        text-decoration: none;
        vertical-align: middle;
        color: black;
        text-align: center;
        background-color: buttonface;
        box-sizing: border-box;
        margin: 0;
        transition: background-color 0.2s;
    }

    .input-file input[type=file] {
        position: absolute;
        z-index: -1;
        opacity: 0;
        display: block;
        width: 0;
        height: 0;
    }
