
/* Restore `.custom-control` (renamed to `.form-check` in BS5) */
.custom-control {
    position: relative;
    display: block;
    padding-left: 1.5rem;
}

/* Restore `.custom-checkbox` */
.custom-checkbox .custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox .custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-color: #fff;
    border: 1px solid #ced4da;
}

/* Restore `.custom-radio` */
.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

/* Restore `.custom-select` (now just `.form-select`) */
.custom-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

/* Restore `.custom-file` */
.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    opacity: 0;
}
.input-group-prepend, .input-group-append {
    display: flex;
    align-items: center;
    margin-right: -1px;
}

.input-group-prepend .btn,
.input-group-append .btn {
    border-radius: 0;
}
.form-group {
    margin-bottom: 1rem;
}
.card-deck {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.card-deck .card {
    margin-right: 15px;
    margin-left: 15px;
    flex: 1 1 auto;
}
.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 50rem;
}
.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75);
}
.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem;
}
.float-left {
    float: left !important;
}
.float-right {
    float: right !important;
}
.text-justify {
    text-align: justify !important;
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

